问题描述
我想在android中获取我的facebook帐户墙的所有帖子数据。我有会话但是当我执行下面的querry然后给出错误。
新请求(fbSession,/ me?fields = posts,null,HttpMethod.GET,new Request.Callback()
{
public void onCompleted(响应回复){
ShowToast(response.toString());
}
}
).executeAsync();
**错误:**必须使用Active Access Token来了解当前的信息用户。
虽然我有一个活动的会话变量,它可以检索我的基本信息
I want to get all the posts data of my facebook account wall in android. I have got session but when i execute the below querry then gives the error.
new Request(fbSession,"/me?fields=posts",null, HttpMethod.GET, new Request.Callback()
{
public void onCompleted(Response response) {
ShowToast(response.toString());
}
}
).executeAsync();
**Error:** Active Access Token must be used to querry information about the current user.
Although i have an active session variable, which can retrieve my Basic information
推荐答案
这篇关于如何在Android中发布我的Facebook墙?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!