android - Getting information friends on facebook -


i started studying facebook graph api. take list of friends, , output personal information (general information, employment , education, , etc). how can this?

friends list getting so: accesstoken token = accesstoken.getcurrentaccesstoken();

    new graphrequest(             accesstoken.getcurrentaccesstoken(),             "me/taggable_friends?name,id",             null,             httpmethod.get,             new graphrequest.callback() {                 public void oncompleted(graphresponse response) {                      //parse json                  }             }     ).executeasync(); 

i tried use "me/friends/{getting_higher_id}", it's not work. {getting_higher_id} looks -> aard2kuv4vbnwfsauz2brt2t3x4su8mpfii4ztb_20jwdbgqcmxzdhhlu2cdylb-paxzqt2muxdambepjotrkqror2dc

first of all, taggable_friends tagging friends only, not allowed use else. if want information, must use /me/friends, , can friends authorized app too. more information: https://developers.facebook.com/docs/graph-api/reference/v2.4/user/friends

it not possible @ data friends did not authorize app. can limited tagging or invite token name of friend tagging or inviting friends game.


Comments

Popular posts from this blog

mysql - FireDac error 314 - but DLLs are in program directory -

git - How to list all releases of public repository with GitHub API V3 -

c++ - Getting C2512 "no default constructor" for `ClassA` error on the first parentheses of constructor for `ClassB`? -