Reputation: 3100
Yesterday for one of my facebook applications I received an alert message in the developers console that states:
App Review required by August 1, 2018 to retain access to Facebook Platform APIs ... if your ap is not submitted you will loose access to these permissions: user_link, user_gender, user_age_range, user_friends
My application only uses the public_profile
permission, which does not require review according to their documentation.
At the same time I am not able to submit my application for review from the developers console because it requires login permissions to be selected and public_profile
is not listed there.
Should I be worried that I can't submit my App for review or am I misunderstanding the 'App review form'?
Upvotes: 2
Views: 7959
Reputation: 73984
public_profile
is deprecated in v3.0 of the Graph API: https://developers.facebook.com/docs/graph-api/changelog/version3.0
It is just a warning though, if you don´t use those permissions then you should be fine for now. Take a look at the changelog about public_profile
replacements though.
Upvotes: 1