facebook: Ihr Link konnte nicht geteilt werden

Ich füge die Möglichkeit hinzu, Punktzahlen aus meiner App mit Androids Freigabeabsicht zu teilen:

Intent shareIntent = new Intent(android.content.Intent.ACTION_SEND);
shareIntent.setType("text/plain");
shareIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, "My Score");
shareIntent.putExtra(android.content.Intent.EXTRA_TEXT, "I scored "+score+" on "+difficultyString+" difficulty.");

context.startActivity(Intent.createChooser(shareIntent, "Share your score"));

Wenn ich Facebook aus der Auswahl auswähle, wechselt es zu m.facebook.com und sagt "Ihr Link konnte nicht geteilt werden". Was läuft hier falsch?

Antworten auf die Frage(10)

Ihre Antwort auf die Frage