我不知道 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}}
谢谢。