How do I get information from a Facebook page (eg About, id, first name last name etc) through an app that im making in Adobe Flash (ActionScript 3).
I've done this so far:
var request:URL Request = new URLRequest("https://graph.facebook.com/362134400532769?fields=id,name");
var loader:URLLoader = new URLloader();
loader.load(request);
Is that right?
If so, I'm guessing it would return an array of all the elements. How do you then go about attracting the element?