开发者

android how to get user about me info from facebook

开发者 https://www.devze.com 2023-04-03 06:11 出处:网络
I want to fetch info for \"user_about_me \" permission in facebook app. I able to get for email, location, but i try to fetch for about_me its giving only id. I want all info. How can i do that?

I want to fetch info for "user_about_me " permission in facebook app.

I able to get for email, location, but i try to fetch for about_me its giving only id. I want all info. How can i do that?

I did like this,

bundle.putStrin开发者_JAVA百科g("fields", "about");
String about_me=facebook.request("me", bundle);

Its giving only id.

Is there any way?


String about_me = Facebook.request("me");

This will do, you don't need to add a bundle as a second parameter, afaik.

0

精彩评论

暂无评论...
验证码 换一张
取 消