0

我试图获取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);

我收到错误请求作为响应

4

2 回答 2

0

我已经有这样的问题了。尝试删除空格或将其转换为 %20。

String wallres=UrltoValue.getValuefromUrl("https://graph.facebook.com/me/feed?access_token=accesstoken");
Log.e("wall res",wallres);

问候,雨果佩德罗萨

于 2013-05-14T15:54:50.603 回答
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);
于 2012-10-17T07:19:50.617 回答