Android開啟QQ臨時會話和開啟群聊
阿新 • • 發佈:2019-01-23
1、
開啟QQ臨時會話:
String url3521 = "mqqwpa://im/chat?chat_type=wpa&uin=1257683526"; startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse(url3521)));需要對方開啟臨時會話許可權,不過一般作為客服都是預設開啟的;
2、
開啟QQ臨時會話:
接入官方sdk,可以自行研究下,因為上面隱式意圖感覺可以實現就沒有深究了
3、
開啟申請加群
一、進入:http://qun.qq.com/join.html
二、點選請選擇你建立的群,(有個key值,必須要是自己建立的群,或者是管理員才能看到這個key值)
三、
使用下面方法:
Intent intent = new Intent();intent.setData(Uri.parse("mqqopensdkapi://bizAgent/qm/qr?url=http%3A%2F%2Fqm.qq.com%2Fcgi-bin%2Fqm%2Fqr%3Ffrom%3Dapp%26p%3Dandroid%26k%3D" + key)); try { startActivity(intent); } catch (Exception e) { CLToastUtil.showToast(getActivity(), "未安裝手Q或安裝的版本不支援"); }
就可以看到加群介面了。