I am working on an android application in which I am using facebook open graph api to get the friends list. Its easy to get the friend's list, but what if I want the location of my friend through graph api? Is this possible? If so, then what steps should be taken for a graph api call?

try {
            return Factory.getFacebook().request(url[urlCount]);
        } catch (MalformedURLException e) {
            e.printStackTrace();
            return null;
        } catch (IOException e) {
            e.printStackTrace();
            return null;
        }

Where url is "me/friends".

link|improve this question

62% accept rate
feedback

1 Answer

I think its possible. Never tried but if u see the documents of facebook api, u can surely get it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.