通过 Jsoup 更新 Facebook 状态

发布于 2024-12-08 20:44:18 字数 491 浏览 0 评论 0原文

我想通过 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 技术交流群。

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

发布评论

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

评论(1

生来就爱笑 2024-12-15 20:44:18

虽然这最终可能会奏效,但这并不是与 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文