我正在使用facebook sdk在facebook墙上分享。如果我使用管理员帐户,我可以在Facebook上分享。管理员帐户表示已创建应用帐户如果我使用其他Facebook帐户,我无法分享。
{"error":{"message":"(#200) The user hasn't authorized the application to perform this action","type":"OAuthException","code":200}}
以下是代码段
private Facebook facebook = new Facebook(APP_ID);
private static final String[] PERMISSIONS = new String[] { "publish_actions" };
Bundle parameters = new Bundle();
parameters.putString("message", message);
parameters.putString("description", "topic share");
try {
facebook.request("me");
String response = facebook.request("me/feed", parameters, "POST");
Log.d(TAG, "got response: " + response);
} catch (Exception e) {
}
任何人都可以帮忙解决这个问题吗?
由于 哈拉