我想在android
中使用图形API获取Facebook页面的验证状态(蓝色勾号)Bundle bundle = new Bundle();
bundle.putString("fields", "name");
GraphRequestAsyncTask graphRequestAsyncTask = new GraphRequest(
AccessToken.getCurrentAccessToken(),
"/PageId/",
null,
HttpMethod.GET,
new GraphRequest.Callback() {
public void onCompleted(GraphResponse response) {
JSONObject jsonObject = response.getJSONObject();
}
}
).executeAsync();
用于获取状态的字段是什么
答案 0 :(得分:2)
您是否尝试过使用“is_verified”标签?