0

我在将一些数据放在用户 Facebook 墙上时遇到了很大的问题。我正在使用典型的:

String response = mFacebook.request("me/feed", params, "POST");

但它不断地给我一个输出:

07-31 12:28:44.651: V/status(23104): {"error":{"message":"An active access token must be used to query information about the current user.","type":"OAuthException","code":2500}}

所以我猜我的代码结构不允许我使用这个 api 方法。你知道如何在没有 FB API 的情况下发送 POST 数据吗?

4

1 回答 1

2

首先,您需要通过 Facebook API 对用户进行身份验证。如果没有身份验证和适当的许可,您将无法在用户时间轴上发布或阅读后者的帖子。身份验证的目的是获得access_token您在您的情况下需要的。如果您想这样做,您可以从以下文档开始: https://developers.facebook.com/docs/php/gettingstarted/ https://developers.facebook.com/docs/javascript/gettingstarted/

于 2013-07-31T12:55:09.567 回答