Graph API return type in ANDROID
I am working on an android app developed in JAVA. I am not using the android-facebook sdk . I want to know what the return type of the this given url would be so that i can accordingly work on it .
https://graph.facebook.com/me/feed?access_tok开发者_StackOverflow社区en=XXX...
If its JSON can you tell me if there is a way to convert it into HTML
It is a json structure. You can use Gson from google to parse it. There are other alternatives around.
Regards, Stéphane
精彩评论