문제

I am creating a WPF application on C# using the Facebook API. This application is to find accounts by name and print information about the accounts. I am using the following query:

SELECT uid, name, books, education, email, music, movies 
FROM user WHERE CONTAINS('Anton Petrov')

But I have a problem. The API is only returning uid and name fields. Other fields is empty. How can I get this fields?

Thanks in advance

도움이 되었습니까?

해결책

You cannot fetch every details of a user. We have to ask for permissions to get the details other than the basic ones.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top