从Android应用程序调用facebook messenger后:
Long targetId = UID_HERE;
Uri uri = Uri.parse("fb-messenger://user/");
uri = ContentUris.withAppendedId(uri, targetId);
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
startActivity(intent);
有没有办法让调用者应用程序知道将在facebook messenger中进行交互的facebook用户ID?
答案 0 :(得分:0)
这是将messenger facebook发送给具有用户ID的其他用户的技巧。 现在,在facebook api中,响应中用户的用户标识是范围用户标识。它不能用你的技巧。