You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
only the publish_actions permission will be actually requested to Facebook. After long debugging we found out that this was because connect-oauth will send the POST body like this:
...&scope=manage_pages&scope=publish_actions...
and the first scope gets overridden by the second.
We solved this problem in our code by just setting scope: ["manage_pages,publish_actions"], but still I report it just in case the same problem occurs to other users.
Cheers
The text was updated successfully, but these errors were encountered:
When setting up
connect-oauth
for Facebook, like this:only the
publish_actions
permission will be actually requested to Facebook. After long debugging we found out that this was becauseconnect-oauth
will send the POST body like this:...&scope=manage_pages&scope=publish_actions...
and the first scope gets overridden by the second.
We solved this problem in our code by just setting
scope: ["manage_pages,publish_actions"]
, but still I report it just in case the same problem occurs to other users.Cheers
The text was updated successfully, but these errors were encountered: