Questions tagged [facebook-actionscript-api]

The new Adobe ActionScript 3 SDK for Facebook Platform API, fully supported by Facebook and Adobe, makes it easy to build applications that combine the strengths of the Flash Platform. Developed by gskinner.com, this class library facilitates the development of Flash Platform applications that communicate with Facebook using the OpenGraph API.

32 questions
4
votes
6 answers

Why does Facebook Actionscript API init() not work?

I am calling com.facebook.graph.Facebook.init(APP_ID, loginHandler); to log in to facebook using the actionscript api (as explained in this tutorial: http://www.adobe.com/devnet/facebook/articles/flex_fbgraph_pt4.html). But, it does not seem…
3
votes
4 answers

Facebook Actionscript API 'Facebook.Init()' call is suddenly returning null session object. Why?

I have a game on Facebook that has been running successfully for almost a year now. It went offline this morning because my Flash Client which calls the facebook-actionscript-api: Facebook.init(app_id, handleLogin) ...function, started getting a…
2
votes
2 answers

Facebook.getAuthResponse() seems to be broken

Since early morning (gmt+1) the Facebook.getAuthResponse() command of the facebook-actionscript-sdk seems to be broken. It does not return neither the access_token nor the uid but return "null" instead. This is very crucial for our facebook app,…
1
vote
1 answer

Do I need to keep my access token secret

I'm using the actionscript api for a flash application on the web. I would like to perform actions which require an access token, but I'm unsure of the security implications of using this in flash (which can be decompiled). Is the access token…
1
vote
3 answers

Facebook Flash app cannot communicate with JavaScript

My index.php file loads the Facebook JavaScript SDK and the FBJS bridge: It then inits the Facebook…
dani
  • 4,880
  • 8
  • 55
  • 95
1
vote
2 answers

facebook actionscript api flash: how safe it is to place the api key and secret key in my flash application?

I want to write a flash application that uses the facebook javascript api. for the flash application to use it, I'd have to write the secret and api key in the flash application. as far as i know every flash application can be decoded and the api…
ufk
  • 30,912
  • 70
  • 235
  • 386
1
vote
1 answer

flex 4 and facebook-actionscript-api : cannot login

I wrote a simple application for facebook and it seems that i fail to login. I created a test application on facebook and i test my application by going to apps.facebook.com/ i have the following function that is being executed after…
ufk
  • 30,912
  • 70
  • 235
  • 386
1
vote
1 answer

actionscript facebook Login fails with Error #2032: Stream Error. on Mobile device

I'm trying to login with my facebook account in a flex mobile application. The steps for my scenario are: push the facebook login button the facebook login pop-up appears User types username and password, hits login button. My code: public…
Dan Dinu
  • 32,492
  • 24
  • 78
  • 114
1
vote
0 answers

How do I combine Facebook social comments plug-in with comments on an Open Graph Action?

Our FB app creates Actions that get sent to users' Friends via notifications. Those friends can comment on the Action, within the notification on their Facebook feed. Our app is also using Facebook comments social plug-in to allow people to…
1
vote
1 answer

Do not receive a response from FBAS.init

It was working till Thursday of last week, but I'm wondering if something changed cause the code has been the same since then. I pass the following JSON information to the FBAS.init call from my app in…
0
votes
1 answer

Facebook API Publishing action with JS SDK

I am really struggling with the facebook api. A have created a app, an object an action, and I want to test to publish in my stream, (I know the public publishing has to be authorised by facebook but as an adminsitrator of my app, I am allowed to…
epsilones
  • 11,279
  • 21
  • 61
  • 85
0
votes
1 answer

get current user uid from in flash (swf) object published on facebook wall like you tube movies

I have published my Mp3Player.swf on facebook wall using stream publish. i need to get the uid of the current user in side my player which is running just like you tube move on the facebook wall. i am using facebook action script sdk for this. if i…
0
votes
2 answers

How to delete application requests?

Question: How to delete an application request using the facebook-actionscript-api? I am trying to delete application requests making this call in Actionscript: Facebook.api(full_request_id, callback, "delete", "POST"); The Actionscript API then…
Lubach
  • 113
  • 7
0
votes
1 answer

can i search for all tagged photos associated with user some id i all of facebook users?

I'm using the the Adobe ActionScript 3 SDK for Facebook Platform to get all the tagged photos of the current user. Is this possible? I've tried this: FacebookDesktop.api("/"+uid+"/photos",getTagedPhotosHandler); But that only gets me the photos…
0
votes
2 answers

Facebook.mobileLogin problem. "OAuthException" message: "Error validating application."

I try to login on facebook using facebook action script SDK. FacebookMobile.init("my_app_id", initCallback); private function initCallback(success:Object, fail:Object):void { trace("initCallback"); trace("success: " +…
yozhik
  • 4,644
  • 14
  • 65
  • 98
1
2 3