We have recently received two alerts regarding our facebook app.
Your app is still calling Graph API v1.0 which will be deprecated on April 30, 2015. You must upgrade this app to v2.0 or greater before that date.
To help you experience the potential effects of this migration, starting tomorrow at 12pm PST, the admins, developers, testers and Test Users associated with this app will be upgraded to use API v2.0 by default. This change won't affect your public users until April 30, 2015.
You'll be able to temporarily opt-out of this behavior in the Migrations tab of your app's dashboard - but the migration will be automatically re-enabled every two weeks until April 30, 2015.
For more information, please read our upgrade guide and login review guide.
The second one is very similar and starts with:
We have detected that your app is still calling Graph API v1.0 which will be deprecated on April 30, 2015. You must upgrade this app to v2.0 or greater before that date.
However, we have been using Graph API v2.2 for serveral months now by specifying api version in koala config (we always use koala to call GraphAPI):
Koala.config.api_version = "v2.2"
Since we need the subscribed_apps endpoint, we are using v2.2. Switching to v1.0 results in OAuthException, code: 12, message: (#12) Requires version v2.2 or higher [HTTP 400]
in case of subscribed_app calls.
I know that not specyfing a version at all results in choosing the oldest available one but we have specified the version in koala, so it's not the point in our case.
Is it possible to find out what caused the alert from Facebook?