使用Androids Facebook SDK直接发布到Facebook流/墙!

在我的Android应用程序中,我想发布一些东西给Facebook。 我用facebook SDK玩了很多,我可以贴在墙上,用预定义的字符串填充对话框。

但现在我无法直接发布到“feed”或“stream”。 现在用户可以更改将发布到墙上的文本。 当应用程序请求发布到流的权限时,我希望它直接发布,而用户无需更改它会说的内容。

我该怎么做呢?

现在我有一个实现DialogListener的类,其中的重要代码如下所示:

Bundle parameters = new Bundle();

parameters.putString("message", "this is a test");

facebook.dialog(HighScoreActivity.this, "feed", parameters, this);


直接调用feed,而不是调用对话框。

AsyncFacebookRunner mAsyncRunner = new AsyncFacebookRunner(mFacebook);
mAsyncRunner.request("me/feed", params, "POST", new RequestListener() {
    // Where params is your Bundle
    // You would need to put here the required methods from RequestListener()
}

这将直接发布到feed,绕过对话框。

链接地址: http://www.djcxy.com/p/49601.html

上一篇: Post directly to facebook stream/wall with Androids Facebook SDK!

下一篇: android & facebook stream.publish problem... help!