Reputation: 313
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
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