web-dev-qa-db-fra.com

Ouvrez Facebook Messenger sous Android

Je veux ouvrir Facebook Messenger par code. Comment puis-je obtenir l'identifiant facebook?

Voici ma méthode:

// 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

Vous pouvez simplement l'ouvrir comme ceci sans ID FB 

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
miqdadamirali

Tout d'abord, vérifiez que l'application existe déjà sur l'appareil et écrivez les lignes suivantes pour les ouvrir.

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

Allez sur le profil facebook de quelqu'un. Faites un clic droit sur l'image du profil et copiez l'adresse du lien. Collez-le dans un éditeur de texte et vous verrez le paramètre "referrer_profile_id" à la fin de l'URL. C'est l'identifiant facebook de cet utilisateur.

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