分享到Facebook,“您的链接无法共享”

时间:2010-10-15 00:38:10

标签: android share

  

可能重复:
  facebook: Your link could not be shared

我正在使用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页面上显示“您的链接无法共享”。有什么帮助吗?

0 个答案:

没有答案