Facebook Java 集成
我关注了 http://developers.facebook.com/docs/authentication 并获得了 a 的 access_token用户。现在,我想从 java 应用程序将一些文本/图像发布到他的墙上。
如何使用此 access_token 发布到用户的墙上?
我找不到任何适合桌面应用程序的文档。
-- 谢谢。
I followed http://developers.facebook.com/docs/authentication and got the access_token of a user. Now, I want to post some text/images onto his wall from a java application.
How can I use this access_token to publish onto user's wall?
I could not find any suitable documentation for desktop applications.
--
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看一下 restfb - 用于 Graph API 和旧的 Rest API 的 Java API。
Take a look at restfb - a Java API for both the Graph API and the old rest API.
确保您已申请具有publish_stream权限的访问令牌。如果是这样,您可以使用restfb轻松地将图像或消息或链接发布到用户墙。 restFb 网站上有很多示例代码。
Make sure that you have applied for the access token with the publish_stream permission.If so you can easily post images or messages or links to the users wall using restfb. There are a lot of sample codes available in the restFb website.