如下內容爲轉載,原帖子 http://m.blog.csdn.net/blog/qduningning/40587099web
在瀏覽器中能夠經過JS代碼打開QQ並彈出聊天界面,通常做爲客服QQ使用。而在移動端騰訊貌似沒有公佈提供相似API,可是卻能夠使用schema模式來啓動手機QQ。
如下爲具體代碼:
Android:api
String url="mqqwpa://im/chat?chat_type=wpa&uin=123456";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=123456&version=1&src_type=web"];NSURLRequest *request = [NSURLRequest requestWithURL:url];webView.delegate = self;[webView loadRequest:request];[self.view addSubview:webView];
瀏覽器:ui
<a target="_blank" href="http://wpa.qq.com/msgrd?v=3&uin=123456&site=qq&menu=yes">click here</a>
看了上面的帖子,在apicloud中怎麼實現呢???
APICloud:url
Android <a href="mqqwpa://im/chat?chat_type=wpa&uin=123456">click here</a>
iOS <a href="mqq://im/chat?chat_type=wpa&uin=123456&version=1&src_type=web">click here</a>.net
若是是羣的話
<a href="mqqapi://card/show_pslcard?src_type=internal&version=1&uin=65895196&card_type=group&source=qrcode">和Qun聊天</a>code