I received a notification from Facebook saying I was using a deprecated endpoint that is going to be shut down soon. When I dug, I realised I was using Facebook2OAuth2 back-end instead of the more up-to-date FacebookOAuth2.
It looks like Facebook2OAuth2 was added when FacebookOAuth2 was still using v1 of the open graph, and Facebook2 could now be removed, as it's using unavailable endpoints.
I suggest to either:
Change Facebook2OAuth2 to be same as FacebookOAuth2 with a deprecation warning logged in the __init__().
New release without forgetting to mention the breaking change in the release notes
I received a notification from Facebook saying I was using a deprecated endpoint that is going to be shut down soon. When I dug, I realised I was using
Facebook2OAuth2
back-end instead of the more up-to-dateFacebookOAuth2
.It looks like
Facebook2OAuth2
was added whenFacebookOAuth2
was still using v1 of the open graph, and Facebook2 could now be removed, as it's using unavailable endpoints.I suggest to either:
Facebook2OAuth2
to be same asFacebookOAuth2
with a deprecation warning logged in the__init__()
.