QQ客服代码移动版

Posted 干货库

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了QQ客服代码移动版相关的知识,希望对你有一定的参考价值。

mqqwpa://im/chat?chat_type=wpa&uin=910521727&version=1&src_type=web&web_src=qq.com

 

mqqwpa://im/chat?chat_type=wpa&uin=910521727&version=1

 

是的,你也许见过强行聊天的代码:

 tencent://Message/?Uin=910521727&websiteName=www.qq.com&Menu=yes

 

但是你应该不知道,还有强行加好友的代码:

tencent://AddContact/?fromId=45&fromSubId=1&subcmd=all&uin=910521727&fuin=938065079&website=www.qq.com

 

 

android

 

String url="mqqwpa://im/chat?chat_type=wpa&uin=501863587";
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse(url)));

 

 

ios:

 

UIWebView *webView = [[UIWebView alloc] initWithFrame:CGRectZero];
NSURL *url = [NSURL URLWithString:@"mqq://im/chat?chat_type=wpa&uin=501863587&version=1&src_type=web"];
NSURLRequest *request = [NSURLRequest requestWithURL:url];
webView.delegate = self;
[webView loadRequest:request];
[self.view addSubview:webView];

以上是关于QQ客服代码移动版的主要内容,如果未能解决你的问题,请参考以下文章

移动端H5 QQ在线客服链接代码

可浮动的在线qq咨询客服代码

QQ客服代码

QQ在线客服插件代码,下载自CSDN==可拖动在线客服插件。

iOS浏览器不能打开手机QQ客服与指定用户聊天界面

iOS跳转到QQ群或指定QQ客服页面