I’m having an issue with retrieving work information of people and it always returns null even if public data available. I use FaceBook.dll and pass below query to FacebookClient.
select uid, username, first_name, middle_name, last_name,work
from user
where uid in (598632817)
But what I got for the work information is null (“work”:null). Any idea how to solve the issue?
Even when the information is public, using the API you always must specify a valid access token for getting it. Otherwise, you can get it from
http://graph.facebook.com/598632817if it is truly public.