将数据传递到Android Facebook默认应用程序

时间:2010-08-10 14:34:27

标签: android facebook

我正在尝试使用Android的默认Facebook客户端将消息发布到Facebook墙上。当我尝试这样做时,我无法使用相同的方式发布任何短信。如果我传递一个URL,它会从中提取标题,图像和描述等详细信息,并自动在墙上发布。

我怎么能把文字传递给它。我正在使用以下代码行来执行此操作。当我这样做时,Facebook应用程序显示错误消息“您的链接无法共享”。

Intent sendIntent = new Intent(Intent.ACTION_SEND); 
sendIntent.putExtra(android.content.Intent.EXTRA_EMAIL, ""); 
sendIntent.putExtra(Intent.EXTRA_SUBJECT, "");
String tst="This is a sample message via Public Intent";
sendIntent.putExtra(Intent.EXTRA_TEXT, tst);
sendIntent.setType("text/plain");

1 个答案:

答案 0 :(得分:0)

在android中使用facebook api命名为fbconnectandroid