0

我不知道 Java + Facebook 集成会花费很多钱。有没有人有示例代码以管理员身份发布到 Facebook 页面?

我了解 OAuth 流程,我只需要使用scribe lib发送带有我的文本的 OAuthRequest 。如果可能的话,如何发送一个字节[](一张图片)。

request.addBodyParameter("status", "Testing: Updating my facebook status through Java"); service.signRequest(accessToken, request);
Response response = request.send();

我已经从scribe 示例中尝试了上面的代码,但我得到了{"error":{"message":"(#100) Can only call this method on valid test users for your app","type":"OAuthException","code":100}}

谢谢。

4

1 回答 1

1

I believe you need to generate an application token (assuming you have all the proper permissions) using the app secret and using this newly created token in your posts, etc.

于 2012-04-25T23:31:30.593 回答