我见过这样的其他主题:launch facebook app from other app并尝试了其中列出的一些URI,但我无法弄清楚如何与特定朋友开始Facebook聊天。
是否有一个官方页面描述了IntentUriHandler以及所有允许的带有params的URI?
谢谢, 洛伦佐
答案 0 :(得分:6)
在此处找到:https://developers.facebook.com/docs/messenger-platform/discovery/m-me-links#format
http://m.me/{#user_id}
您可以使用此URI与已知身份的朋友打开消息。
你可以像下面那样启动意图
startActivity(new Intent(android.action.VIEW, "http://m.me/{#user_id}"));
答案 1 :(得分:5)
startActivity(new Intent(Intent.ACTION_VIEW,
Uri.parse("fb://messaging/" + userId)));