如何从 Servlet 使用 Facebook Graph-API
我需要从 J2EE 应用程序(服务器端)访问 Facebook。 我首先看了一下这个项目: http://code.google.com/ p/facebook-java-api/ ,但由于我需要创建 Facebook 活动并邀请人们,这没有帮助。
所以我想我需要使用 Graph API,但我不知道如何执行所需的 HTTP POST 请求 - 特别是如何附加 nedded 属性。
I need to access Facebook from a J2EE-App (serverside).
I first had a look at this project: http://code.google.com/p/facebook-java-api/
, but as I need to create Facebook-Events and invite people this does not help.
So I guess I need to use the Graph API, but Igot no clue on how to perform those HTTP POST requests needed - especially how to append the nedded attributes.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
java.net.URLConnection
为此:或者,您也可以使用更方便的 HttpClient API 为此:
You can use the
java.net.URLConnection
for this:Alternatively, you can also use the more convenienced HttpClient API for this: