I'm creating a flash application and I downloaded GraphAPI_web_1.8.1.swc. And I am using adobe flash professional cs6 and created a project with as3. I have a log in button and when i click it, it should connect me to the facebook by my application. It doesnt work and i dont see any errors on compiler window. But i traced every steps and i saw the init and login functions doesnt work. I was trying facebook desktop instead of facebook web and i worked with air but not with flash professional. And i decided to This is my code.
package {
import flash.display.MovieClip;
import flash.events.MouseEvent;
import com.facebook.graph.Facebook;
public class Main extends MovieClip {
private var APP_ID:String = "466097573423642";
public var permissions:Array = ["user_birthday","read_stream","publish_stream","email"];
public function Main() {
// constructor code
loginout.addEventListener(MouseEvent.CLICK, _login);
Facebook.init(APP_ID, loginHandler);
}
private function _login(e:MouseEvent):void
{
Facebook.login(loginHandler, permissions);
trace("clicked");
}
protected function loginHandler(success:Object, fail:Object):void
{
trace("Hey");
if(success) {
trace("Login successful!");
}
}
}
}