Hi,
According to Facebook Developers review process, it states:
The publish_actions permission will be deprecated. This permission granted apps access to publish posts to Facebook as the logged in user. Apps created from today onwards will not have access to this permission. Apps created before today that have been previously approved to request publish_actions can continue to do so until August 1, 2018. No further apps will be approved to use publish_actions via app review. Developers currently utilizing publish_actions are encouraged to switch to Facebook’s Share dialogs for web, iOS and Android.
However the updated Facebook v4a documentation still uses the publish_actions (https://docs.coronalabs.com/plugin/facebook-v4/login.html) within the Intermediate listener. Currently I have my Corona app to follow this code structure. When August 1st comes around, will I have to call the login function with a different permission or will this line
“facebook.login( genericFacebookListener, { “publish_actions” } )”
be removed altogether? Currently the way my app is set up is that it needs these two separate login function calls in order for my posting to work if a user decides to sign into their account within the Corona app or when they choose to login externally through their device Facebook app.
Will that login function call with the publish_actions request break the code if left in when it reaches August 1st?
Thank you!