I am trying to develop a Facebook application which shows me all the content of an user id's events.
I found that I can use FQL for that and I used
https://graph.facebook.com/fql?q=SELECT uid,eid,rsvp_status FROM event_member WHERE uid =me()
However, I am clueless how to use this query further. I got the JSON results and would probably be using JSON Object and JSON parser and would love to do it in JavaScript on the frontend, but how do I login for a user and then display the results on the frontend?
I would not prefer PHP but HTML/JavaScript for the task.