As the fql query is part of the request url (e.g. http://graph.facebook.com/fql?q=SELECT...) i suppose there is a limit for the length of urls (or their params)?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
There is no documented or announced limit on the length of the FQL query, on the other side there is limit for query string (which is different across browsers and web-servers, see Compatibility issues). Mind that you are not required to use GET to run a query and POST will be working fine allowing you to avoid query string limit. BTW, if you'll use SDK to issue FQL query you may specify appropriate HTTP method manually Using JS-SDK:
Using PHP-SDK:
|
||||
|
|