Questions tagged [facebook-as3-api]

26 questions
4
votes
1 answer

Posting image to Facebook album with AS3 API

I'm having trouble with posting an image from my canvas application to the user's albums. According to the Facebook docs: In order to publish a photo to a user’s album, you must have the publish_stream permission. With that granted, you can upload…
shanethehat
  • 15,460
  • 11
  • 57
  • 87
2
votes
1 answer

Occasional (and recurrent) problems with FacebookMobile.init()

Seems this API is broken and/or abandoned because in some days, this API call always fails during a few hours. Today is happening again, but it's taking more time than previous times. I don't know what to do. I have 2 Air apps and they aren't…
Marcelo Assis
  • 5,136
  • 3
  • 33
  • 54
1
vote
1 answer

Get root page url using Javascript

i am developing facebook application, and i need to get the facebook root page url not iframe, all these methods: document.location,window.location and top.location... return the iframe url ( my hosting server ) not facebook url. any suggestions ?
mokayyali
  • 153
  • 1
  • 4
  • 12
1
vote
1 answer

Facebook Insights and AS3

Is there a way for me to pull data directly from Facebook Insights and load them into my Flash application instead of manually downloading the provided Excel sheet in my Fan Page?
1
vote
0 answers

listing photos in limited consultation

I discovered this problem because when I realized that there was an album in my profile with 30 shots and when did the query via command to list only part appeared like 20 photos a separate value for paging but does not respect a logic! someone has…
1
vote
2 answers

Integrate Facebook Credits with AS3-SDK

I’m trying to integrate Facebook Credits as a paying method using the as3-sdk. I managed to get “earn_credits” and “buy_credits” working. However the third and most important option, “buy_item”, doesn’t show up the pay dialog. Somehow the connection…
1
vote
1 answer

Prompting the user to send an application request to a friend

I have a facebook canvas app (flash). I have a user who is visiting the app. I have a button that the user clicks for the purpose of inviting a friend to the app. I understand that this can be done via the js sdk:…
dsdsdsdsd
  • 2,880
  • 6
  • 41
  • 56
0
votes
1 answer

Uploading videos to facebook with the ActionScript Graph Api

I'm searching for hours now and cant find anything related to the subject anywhere! Basically what I have right now: 1)Adobe air 2 app that records the webcam input for 10 seconds and saves it as an .flv video on the local machine. 2)when the video…
user1275932
  • 56
  • 1
  • 9
0
votes
1 answer

Callback not being triggered by Graph UI calls (AS3)

I've got a Flash application working with the AS3 Graph API as far as Facebook opening up the requested dialogues (purchase, post, invite). Unfortunately, these calls to Facebook.ui never seem to result in the corresponding callback method being…
FSP
  • 4,677
  • 2
  • 19
  • 19
0
votes
1 answer

AS3 Flash api not setting game category app score - acces token error

Hope it's not a very noobish question i'm asking :) - I'm trying to set the score parameter for my app ( Game category app ) with the AS3 Flash API ( Which i see is a wrapper around JS Api ) but i keep getting the "(#15) This method must be called…
0
votes
1 answer

tag a Facebook friend in status through the application

How to let the user tag a Facebook friend for status wall post through the application (using AS3 SDK)
Armin
  • 78
  • 1
  • 10
0
votes
0 answers

facebook with action script 3 issue in retrieve friends

I develop simple facebook game using action script 3 ,, I have an issue -- first when I logged with Admin of the game or developer ,, I can get my profile and my friend list . and if I login to facebook with any user failed to retrieve user and…
0
votes
1 answer

facebook image uploading using as3

I am getting this error while we are uploading image to facebook.And i am given the permissions. https://graph.facebook.com/me/photos { "error": { "message": "An active access token must be used to query information about the current…
0
votes
0 answers

post image to facebook wall from as3

I know how up image to album: public function postImage(img:BitmapData):void { var params:Object = { photo:new Bitmap(img), message:'Test Photo', fileName:'FILE_NAME', …
miroslav
  • 21
  • 3
0
votes
1 answer

How to specify language, location and city with facebook graph api

I am using FacebookGraphAPIDesktop.swc api to create unpublished post. How can I assign language, location and city parameter with it? Currently I am creating it like below :- var params:Object = new Object(); params.access_token =…
AnandMeena
  • 528
  • 3
  • 11
  • 26
1
2