web-dev-qa-db-ja.com

FacebookMes​​sengerをAndroid

Facebookメッセンジャーをコードで開きたいです。 Facebook IDを取得するにはどうすればよいですか?アプリにFacebookSDKがあり、すべてのユーザーにfacebookIdを保存しましたが、必要なものと同じではありません

これが私の方法です:

// Make sure the Facebook Messenger for Android client is installed
        boolean isFBInstalled = isAppInstalled("com.facebook.orca");

        if (!isFBInstalled) {
            Toast.makeText(this,"Facebook messenger isn't installed. Please download the app first.", Toast.LENGTH_SHORT)
                    .show();
        }

        else {
            // Create the Intent
            Uri uri = Uri.parse("fb-messenger://user/");
            uri = ContentUris.withAppendedId(uri,Long.valueOf(facebookIDhere);
            Intent intent = new Intent(Intent.ACTION_VIEW, uri);

            try {
                startActivity(intent);
            }

            catch(Exception e) {
                Toast.makeText(this,"Oups!Can't open Facebook messenger right now. Please try again later.", Toast.LENGTH_SHORT)
                        .show();
            }
        }

        return;
2
asda sda

誰かのFacebookプロフィールに移動します。プロフィール写真を右クリックして、リンクアドレスをコピーします。テキストエディタに貼り付けると、URLの最後に「referrer_profile_id」パラメータが表示されます。そのユーザーのFacebookIDです。

Intent i = new Intent(Intent.ACTION_VIEW, Uri.parse("fb://messaging/" + FbUserID));
startActivity(i);
2
kmchmk

FBIDなしでこのように簡単に開くことができます

Intent intent= new Intent();
intent.setAction(Intent.ACTION_SEND);
intent.putExtra(Intent.EXTRA_TEXT, "Hello");
intent.setType("text/plain");
intent.setPackage("com.facebook.orca");

try
{
    startActivity(intent);
}
catch (ActivityNotFoundException ex) 
{
    Toast.makeText(this,
           "Oups!Can't open Facebook messenger right now. Please try again later.", 
            Toast.LENGTH_SHORT).show();
}
1
myselfmiqdad

まず、アプリがデバイスに存在するかどうかを確認し、次の行を書き込んで開きます。

Intent intent = activity.getPackageManager().getLaunchIntentForPackage("com.facebook.orca");
activity.startActivity(intent);
0
Swamy