[Flashcoders] facebook actionscript graph api - post to /feed

2011-04-14 Thread allandt bik-elliott (thefieldcomic.com)
hi guys i'm having a bit of trouble with the facebook actionscript graph api While i can get posting to /feed to work with Facebook.ui, (does a facebook popup), i can't seem to get it to work with Facebook.api here is my code: var values:Object = { name:This is my title,

Re: [Flashcoders] facebook actionscript graph api - post to /feed

2011-04-14 Thread Patrick Matte
I can only suggest you just use the Facebook API directly without using that AS3 api. So something like this. var urlRequest:URLRequest = new URLRequest(https://graph.facebook.com/; + userid + /feed); var variables:URLVariables = new URLVariables(); variables.access_token = token;