如何在Android中创建虚假的facebook访问令牌进行测试?

时间:2015-04-24 19:06:22

标签: android facebook facebook-graph-api

我正在使用facebook SDK制作图表请求:

GraphRequest.newMeRequest(AccessToken, this);

在我的onCompleted(JSONObject user, GraphResponse graphResponse)回调中,我想处理任何错误。目前,我已将其设置为:

if (graphResponse.getError() != null) {
  // I intend to raise make a toast and display any errors here to the user.
  Log.d(TAG, graphResponse.getError().toString());
}

是否有一种简单的方法来创建一个糟糕的AccessToken,以便我可以捕获错误?文档here为它指定了一个构造函数,但它非常繁琐。

我正在运行适用于Android的Facebook SDK 4.0.1。

谢谢!

0 个答案:

没有答案