繁体   English   中英

Facebook Graph Api在android中搜索

[英]Facebook Graph Api search in android

只想在图形api中使用新请求搜索特定位置的所有事件,但会抛出错误。

 //Request for events
                   new Request(
                            session,
                            "/search?q=dubai&type=event",
                            null,
                            HttpMethod.GET,
                            new Request.Callback() {
                                public void onCompleted(Response response) {
                                    System.out.println("Result: " + response.toString());


                                }
                            }
                    ).executeAsync();

允许:-

authButton.setPublishPermissions("publish_actions","manage_pages");

输出: -

Result: {Response:  responseCode: 400, graphObject: null, error: {HttpStatus: 400, errorCode: 100, errorType: GraphMethodException, errorMessage: Unsupported get request. Please read the Graph API documentation at https://developers.facebook.com/docs/graph-api}, isFromCache:false}

提出一些解决方法。

试试这个新API,希望对您有所帮助。

图形事件API

图API

new GraphRequest(
AccessToken.getCurrentAccessToken(),
"/{event-id}",
null,
HttpMethod.GET,
new GraphRequest.Callback() {
    public void onCompleted(GraphResponse response) {
        /* handle the result */
    }
}

).executeAsync();

希望它会帮助你,详细信息请通过以下链接

https://developers.facebook.com/docs/graph-api/reference/event/

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM