Android:Facebook API 发帖

发布于 2024-11-09 07:25:35 字数 544 浏览 0 评论 0原文

我正在使用 Faccebook android API (com.facebook.android) 在 facebook 上发布消息。 <代码> Facebook mFacebook = new Facebook(Constants.APP_ID); AsyncFacebookRunner mAsyncRunner = new AsyncFacebookRunner(mFacebook); 捆绑包参数 = new Bundle(); parameters.putString("message", "this is a test post");// 要发布到墙上的消息 mFacebook.dialog(this, "stream.publish", 参数, new SampleDialogListener()); 一切

工作正常。我可以登录并发布消息,但登录后,它会显示一个中间对话框,“发布故事”,其中包含一个文本框,其中包含我的帖子消息,“这是一个测试帖子”,可由用户编辑,但是我想在登录后立即发布消息,而无需中间的发布屏幕。

任何人都可以帮助我如何实现这一目标。

谢谢, 尼哈塔

I am using Faccebook android API (com.facebook.android) to post the messages on facebook.

Facebook mFacebook = new Facebook(Constants.APP_ID);
AsyncFacebookRunner mAsyncRunner = new AsyncFacebookRunner(mFacebook);
Bundle parameters = new Bundle();
parameters.putString("message", "this is a test post");// the message to post to the wall
mFacebook.dialog(this, "stream.publish", parameters, new SampleDialogListener());

Everything is working fine. I'm able to login and post the message, but after login, it is displaying a intermediate dialog, "Publish story" with a text box with my post msg, "this is a test post" that is editable by the user, but i want to post the messages immediately after login without having this intermediate post screen.

Can anybody help me how to achieve this.

Thanks,
nehatha

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

别忘他 2024-11-16 07:25:35

您可以这样做:

    Bundle bundle = new Bundle(3);
    bundle.putString("message", "Hello!");
    mFacebook.request("me/feed", bundle, "POST");

This is how you do it:

    Bundle bundle = new Bundle(3);
    bundle.putString("message", "Hello!");
    mFacebook.request("me/feed", bundle, "POST");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文