android - How to retrieve zipcode and mobile number from facebook? -


i want retrieve user's mobile number , zipcode in facebook graph api. using below mentioned permission.

permissions = new string[] {"publish_stream", "offline_access", "user_birthday", "email", "user_location" }; 

can give me idea how retrieve 2 things (zipcode , mobile number) ?

first of can never retrieve mobile number of facebook user through api not exposed through of present api.

secondly when can query zip code using fql

select current_location user uid=me() 

though @ times zip field may blank. don't need permissions it.


Comments

Popular posts from this blog

c# - Operator '==' incompatible with operand types 'Guid' and 'Guid' using DynamicExpression.ParseLambda<T, bool> -