android – facebook:你的链接无法共享

前端之家收集整理的这篇文章主要介绍了android – 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时,它会转到m.facebook.com并说“您的链接无法共享”.这里出了什么问题?

解决方法

这是在尝试分享到Facebook时在所有Android应用程序中发现的常见问题. Facebook阻止其他应用程序使用他们的应用程序共享我不知道为什么,但很多公司都试图绕过这个.目前,它是“unfix-able”.抱歉.
原文链接:https://www.f2er.com/android/315504.html

猜你在找的Android相关文章