张贴在facebook墙上的东西

时间:2012-09-13 15:57:08

标签: java android facebook eclipse

我想在facebook墙贴上发帖子。我正在使用此代码。如果我使用

.setType(image/jpeg)它附加图像并且工作正常。但是,我无法使用消息。请告诉我如何解决这个问题

String msg = "My Message" ;
            Intent shareIntent = ShareCompat.IntentBuilder.from(MainMenu.this)
                      .setType("text/plain")
                      .setText(msg)
                      .getIntent()
                      .setPackage("com.facebook.katana");
            try{
            startActivity(shareIntent);
            }catch (ActivityNotFoundException e) {
                 Toast.makeText(MainMenu.this, "Sorry, but it seems that application is not installed", Toast.LENGTH_LONG).show();
            }

1 个答案:

答案 0 :(得分:1)

在此处查看以下链接,您将获得一些信息

http://developers.facebook.com/docs/reference/api/

这可能会对你有所帮助