android - Get friendsrequests with the Facebook Graph API 2.3 -


i have updated android facebook sdk 2.3 , can't use fql requests anymore.

how can have "friendsrequests" through facebook graph api request ?

what solutions have ?

thanks help

updated answer

this **deprecated**, cant anymore

the documentation says /me/friendrequests removed after graph api 1.0

this document refers feature removed after graph api v1.0.

/* make api call */  new request(          session,          "/me/friendrequests",          null,          httpmethod.get,          new request.callback() {              public void oncompleted(response response) {                  /* handle result */              }          } ).executeasync(); 

permissions

a user access token read_requests permission required view current person's received friend requests.

graph explorer says

{   "error": {     "message": "(#12) friend requests deprecated versions v2.0 , higher",      "type": "oauthexception",      "code": 12   } } 

Comments

Popular posts from this blog

php - failed to open stream: HTTP request failed! HTTP/1.0 400 Bad Request -

java - How to filter a backspace keyboard input -

java - Show Soft Keyboard when EditText Appears -