您好我在android项目中使用facebook图形api并且该项目今天无缘无故崩溃,在调试代码后我发现对facebook图api的请求失败
这是我的Kotlin代码:
var graphRequest = GraphRequest(AccessToken.getCurrentAccessToken(), "/{${AccessToken.getCurrentAccessToken().userId}}/albums", null, HttpMethod.GET, object : GraphRequest.Callback {
override fun onCompleted(response: GraphResponse?) {
if (response != null) {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
}
}
}).executeAsync()
我使用Graph API资源管理器尝试了该请求,以确保代码不是问题而且也失败了: click to see the screenshot
我希望你能算出真正的问题,因为我是api的新手,非常感谢你。