我尝试获取facebook
墙数据。我使用
accesstoken=Login.mFacebook.getAccessToken();
Log.e("accesstoken",accesstoken);
但是在打电话的时候
String wallres=UrltoValue.getValuefromUrl("https://graph.facebook.com/me/feed? access_token=accesstoken");
Log.e("wall res",wallres);
我收到错误请求作为回复
答案 0 :(得分:0)
通过调用此代码,您可以说accesstoken实际上是URL的一部分。
String wallres=UrltoValue.getValuefromUrl("https://graph.facebook.com/me/feed? access_token=accesstoken");
我认为您打算这样做,以便您使用先前定义的变量accesstoken
:
String wallres=UrltoValue.getValuefromUrl("https://graph.facebook.com/me/feed? access_token=" + accesstoken);
答案 1 :(得分:0)
我已经有这样的问题了。请尝试删除空格或将其转换为%20。
String wallres=UrltoValue.getValuefromUrl("https://graph.facebook.com/me/feed?access_token=accesstoken");
Log.e("wall res",wallres);
问候,Hugo Pedrosa