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.

it's the first time I'm not able to find a solution for an error on my own. I try to perform a fql query but I', getting a very strange response :/

FQL:

{
  "477215715631180":
      "SELECT name, start_time, location, creator, pic_square 
       FROM event WHERE eid=477215715631180",
  "creator_477215715631180":
      "SELECT name FROM profile WHERE id IN (SELECT creator FROM #477215715631180)"
 }

Response:

(#601) Parser error: unexpected '#' at position 58.

Position 58:

... FROM event WHERE ...

API Explorer.

Is there anybody with a solution?

Thanks and kind regards ;)

share|improve this question

1 Answer

up vote 1 down vote accepted

The problem seems to be that you can't have a sub-query named the same as a reserved FQL item. You're using an id for your query designator here. Facebook doesn't like that.

I was able to get your query to run by adding a 'q' to the beginning of your subquery name:

{
  "q477215715631180":
      "SELECT name, start_time, location, creator, pic_square 
       FROM event WHERE eid=477215715631180",
  "creator_477215715631180":
      "SELECT name FROM profile WHERE id IN (SELECT creator FROM #q477215715631180)"
}

For your parser error, Facebook's messages don't reference the whole FQL multiquery. Facebook parses each query individually and throws an error just for the current query it's parsing. So in your case, the first query parsed fine, then this error came from your creator_ query, where the # occurs at position 58.

share|improve this answer
hey thanks! this solution is working ;) i hope it did not take you to long to figure it out ;) – Philipp Woe Aug 20 '12 at 14:04
This time, no. The first time, very long... – cpilko Aug 21 '12 at 2:08

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.