通过 Jsoup 更新 Facebook 状态
我想通过 Java 控制台应用程序更新我的 Facebook 状态。我正在使用 Jsoup HTML 解析器。
首先我需要登录 Facebook 帐户。
Document doc = Jsoup.connect("http://www.facebook.com")
.data("email", "myemailid")
.data("pass", "mypassword")
// And other fields which are being passed in post request.
.userAgent("Mozilla")
.post();
当我在控制台上打印 doc
时,我可以看到我能够登录,但登录是通过 Facebook Mobile 进行的。为什么不出PC版呢?
是否可以使用此 doc
变量来更新我的 Facebook 状态?
我怎样才能实现这个目标?
I want to update my Facebook status through my Java console application. I am using the Jsoup HTML parser.
First I need to login to the Facebook account.
Document doc = Jsoup.connect("http://www.facebook.com")
.data("email", "myemailid")
.data("pass", "mypassword")
// And other fields which are being passed in post request.
.userAgent("Mozilla")
.post();
When I print doc
on the console, I can see that I am able to log in, but that login is through Facebook Mobile. Why not the PC version?
Is it possible to use this doc
variable to update my Facebook status?
How can I achieve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
虽然这最终可能会奏效,但这并不是与 Facebook 沟通的正确方式。
Facebook 有官方 API,可用于发布更新。 restfb 是该 API 的一个很好的 Java 客户端。
Although this may work in the end, it is not a proper way to communicate with Facebook.
Facebook has an official API which should be used to post updates. restfb is a nice java client for that API.