重複の可能性:
facebook: リンクを共有できませんでした
Android の共有インテントを使用して、アプリからスコアを共有する機能を追加しています。
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"));
Facebook へのリンクをクリックすると、Facebook ページに「リンクを共有できませんでした」と表示されます。何か助けはありますか?