I share screenshots on Facebook from my android app (developed on Unity) and it used to work perfect, but I guess Facebook changed their policy and I have no Idea what permissions I need to use in order to continue sharing a texture on Facebook.
That's how I log in:
var permissions = new List<string>() {"publish_actions"};
FB.LogInWithPublishPermissions(permissions);
By using CurrentAccessToken.Permissions
I receive on debugger: Permissions: public_profile
(which means the user didn't get the publish_actions permission).
And when I try to share the pic on Facebook by-
FB.API("me/photos", HttpMethod.POST, APICallback, wwwForm);
I receive 403 forbidden
.
I read that publish_actions
got removed, so how can I share a screenshot now?