码迷,mamicode.com
首页 > 移动开发 > 详细

QQ客服代码移动版

时间:2016-11-23 23:31:51      阅读:459      评论:0      收藏:0      [点我收藏+]

标签:java   span   table   pac   adr   pad   tar   add   com   

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客服代码移动版

标签:java   span   table   pac   adr   pad   tar   add   com   

原文地址:http://www.cnblogs.com/div-css-js/p/6095371.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!