使用Android共享意图在Facebook中共享文本

时间:2013-01-31 02:05:48

标签: java android facebook android-intent facebook-android-sdk

  

可能重复:
  Android share intent for Facebook

我正在尝试与Android中的分享Intent分享一些文字和Facebook链接,但它不起作用,这是我的代码

Intent sendIntent = new Intent();
sendIntent.setAction(Intent.ACTION_SEND);
sendIntent.setType("text/plain");
sendIntent.putExtra(Intent.EXTRA_TEXT, 
"some text here to share" + "https://maps.google.com/maps?saddr=-33.4429,+-70.6539");

startActivity(Intent.createChooser(sendIntent, getResources().getText(R.string.d_title)));

但只是共享链接,文本丢失...在Twitter它工作正常,但在Facebook没有。请帮助:谢谢

1 个答案:

答案 0 :(得分:-3)

- 这个答案已经改变了 -

根据OP,这实际上是不可能的。他找到了一个链接(他在下面评论了它)但是又来了:https://developers.facebook.com/bugs/332619626816423

由于隐私政策,显然预先填写用户的邮件是(或当时)。