How to handle the big int facebook uid returned by FQL?
问题 I've a problem in handling the big userid's of facebook and properly storing them into my database.. As the fql.query REST api is going to be deprecated ,I'm using the GRAPH API for getting the results of the FQL. I want to get the list of my friends with sex,relationship_status . The query i executed is $allFriends = $facebook->api("/fql ?q=SELECT+uid,+name,+sex,+relationship_status+FROM+user+where+uid+in+ (SELECT+uid2+FROM+friend+WHERE+uid1+=$fbuid)" ); I tried the above in the Graph API