How to read facebook chat messages in Android?
I have integrated the facebook sdk to my app to read facebook updates. The app is reading wall messages without any i开发者_Python百科ssue. But I am not getting chat messages. I have given the parameters as parameters.putString("fields", "id,from,message"); . How to get chat messages also? Any help please.
you can get your chat message using facebook SDK..
try this..
String s = facebook.request("me/inbox");
System.out.println("Message...."+s);
精彩评论