Actionscript Graph API: Requesting publish_stream extended permission WHEN USER ALREADY LOGGED IN

How do I in the latest Actionscript Graph API,

force user to allow publish_stream

When : We are doing a facebook timeline app and I need to be able to post an application link

But: The User does not login via app but via site directly so I can NOT do

Facebook.login(handleLogin,["publish_stream]);

-- Nothing happens as we are already logged in

Upvotes: 0

Views: 369

Answers (1)

renato.gaspar
renato.gaspar

Reputation: 9

i dont know if you got this error just on copy and paste here, but...

you try this:

 Facebook.login(handleLogin,["publish_stream"]);

instead this:

 Facebook.login(handleLogin,["publish_stream]);

cya, have a nice coding

Upvotes: 1

Related Questions