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.

I have the fql query as shown below.

Select uid,profile_url,pic_square from user where name="Ershad"

here i am getting a response as below.

xml version="1.0" encoding="UTF-8"

fql_query_response xmlns="http://api.facebook.com/1.0/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" list="true"

But i want all the list.All the details uid,profile_url and pic_square. Please anyone help me out..

share|improve this question

1 Answer

When you get a return result like that, it means that there was no data returned that matched your query. I can immediately think of two things that would cause this:

  • There is no user named "Ershad" that has your application installed. Note that the name field is a full name search, so you'll need to put the person's entire name in there.
  • You are querying with the wrong application API Key

I would suggest you try your query in the API Test Console. Select your application, then choose "fql.query" from the Method drop-down, and try your query there.

share|improve this answer
No Sir, I am getting the result for the same name search in facebook. and in this fql_query_response xmlns="api.facebook.com/1.0/"; xmlns:xsi="w3.org/2001/XMLSchema-instance"; list="true" If i am not mistaken, a list of resukts are coming.(list="true" in the above result). If it is for other name where i have only one result, i am getting the result with uid,pic,profile_url. So please help to get the multiresults. Thanks – Ershad Aug 28 '09 at 6:04
I tried this below query in console, Select uid,profile_url,pic_square from user where username="subbu" i am getting results as below. ?xml version="1.0" encoding="UTF-8"? fql_query_response xmlns="api.facebook.com/1.0/"; xmlns:xsi="w3.org/2001/XMLSchema-instance"; list="true" user uid>689103803</uid profile_url>facebook.com/subbu</profile_url pic_square profile.ak.fbcdn.net/v224/1843/106/q689103803_9863.jpg pic_square user fql_query_response – Ershad Aug 28 '09 at 6:31

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.