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.

Im trying t get some info for some events that certain profile rsvp status is attending but it retrieves blank. Maybe is something about access tolken or whatever.

This is my current fql

SELECT name, pic, start_time, end_time, location, description 
            FROM event WHERE eid IN ( SELECT eid FROM event_member WHERE uid = 100003454558689 AND rsvp_status = 'attending') 
            ORDER BY start_time asc

But it retrieves blank. How can I fix it?

share|improve this question
Check the Facebook Graph Explorer (developers.facebook.com/tools/explorer), and run a few variations. you use "fql?q=" and then copy in your FQL statement. – Anna Billstrom Jul 11 '12 at 7:37

1 Answer

up vote 0 down vote accepted

Well your code is good, you just have to make sure you have the user's rights to get that data. So go to the facebook graph explorer, and pop in your code, but this time change the UID to me(). Why does that work?

  • Your access token, granted by the Facebook app, determines what user data you can see on Facebook. The Graph Explorer by default shows you your own data.
  • So make sure that you have the right permissions for event data. You can test it by the Acess Token drop down on the Graph explorer.
  • Here is a list of permissions: https://developers.facebook.com/docs/authentication/permissions/

  • Looks like you need "user_events"

So it might be nothing wrong with FQL, but something in the auth process. Good luck.

share|improve this answer
how do I create a access tolken and insert it to the code? – Gabriel Nicola Arrigo Jul 12 '12 at 18:20
In whatever language you're running fql, you prompt the user for authentication, and when they agree to it, your app will get an access_token. Use that in the FQL query. – Anna Billstrom Jul 12 '12 at 18:26
but i need to pull the info from a unique profile. Im not understanding how the code would be. can you write a example? – Gabriel Nicola Arrigo Jul 12 '12 at 18:55
Please @Anna Billsttrom help me!!! – Gabriel Nicola Arrigo Jul 12 '12 at 21:59
You can't get it from a profile without the user's permission, which they accept by going through an authentication flow. – Anna Billstrom Jul 14 '12 at 5:17

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.