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
Post a Comment