Flash Air App - iOS - How to Integrate Facebook

I have an AIR application that I want to convert to IOS APP (using flash as3)

I have used facebook for flash api in the past, but what usually implies is an application that opens a new browser window to login to facebook and authorize the application.

How to do this to create an application as a mobile application?

+4
source share
2 answers

Updated versions of the same API specialized for mobile devices. What will happen instead of a new window, the StageWebView login page opens, which covers the screen. You can find the API at http://code.google.com/p/facebook-actionscript-api/

If you want to use the same API with the new Single-Sign-On method, you can read my post at http://saumitrabhave.blogspot.in/2011/10/facebook-single-sign-on-for-air-ios. html

+11
source

The googlecode facebook-actionscript-api is too old. I tried this in my project, but it failed.

Now I am using ANE-Facebook . It works fine on my iOS and Android device.

There is a sample .

+1
source

All Articles