facebook - Tried accessing nonexisting field (fql) on node type (User) -


fql requests fail since wednesday. have no clue why since fql supposed deprecated @ end of april.

basically, here type of requests worked until wednesday :

 https://graph.facebook.com/89240001803405/fql?access_token=<access_code>&q=select+is_published%2c+talking_about_count%2c+access_token%2c+description%2c+emails%2c+fan_count%2c+general_info%2c+location%2c+page_url%2c+pic_square%2c+username%2c+page_id%2cname+from+page+where+page_id+in+%28select+page_id+from+page_admin+where+uid+%3d+89240001803405%29 

and here current response :

{   "error": {   "message": "(#100) tried accessing nonexisting field (fql) on node type (user)",   "type": "oauthexception",   "code": 100   } } 

any idea how can fix before migrate de non fql ?

thanks

the user id have in there before fql part wrong, far know. if has worked before, rather accident, guess.

fql calls via api endpoint should of form https://graph.facebook.com/fql?q=… – identifier fql first path segment, follow parameters such q query, access token , else might appropriate.

specifying user id first doesn’t make sense, because data want select define inside query itself.


Comments

Popular posts from this blog

java - Could not locate OpenAL library -

c++ - Delete matches in OpenCV (Keypoints and descriptors) -

sorting - opencl Bitonic sort with 64 bits keys -