我有一个创建图像的 android 应用程序。
我会将这张图片添加到我的 Facebook 页面的相册中(而不是在我的个人墙上)。
我看到我必须使用应用令牌。
我通过以下方式获得应用令牌:
https://graph.facebook.com/oauth/access_token?
client_id=MY_APP_ID
&client_secret=MY_APP_SECRET
&grant_type=client_credentials
然后使用此应用程序令牌,我认为我必须使用此代码:
String appToken="MY_APP_TOKEN";
facebook.setAccessToken(appToken);
Bundle parameters = new Bundle();
parameters.putString("caption", "This is a message test...");
byte[] ImageBytes=...;
parameters.putByteArray("photo", ImageBytes);
String response2=facebook.request("ALBUM_ID/photos", parameters, "POST");
此代码返回此错误:
A user access token is required to request this resource
那我一定不能使用应用令牌?谢谢