我正在使用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。
谢谢!