We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ccfacb2 commit 1dc9840Copy full SHA for 1dc9840
ChangeLog.rst
@@ -37,6 +37,8 @@ Note worthy changes
37
- The OAuth2 handshake was not working properly in case of
38
``SESSION_COOKIE_SAMESITE = "Strict"``, fixed.
39
40
+- Facebook: the default Graph API version is now v19.0.
41
+
42
43
0.61.1 (2024-02-09)
44
*******************
allauth/socialaccount/providers/facebook/constants.py
@@ -5,7 +5,7 @@
5
GRAPH_API_VERSION = (
6
getattr(settings, "SOCIALACCOUNT_PROVIDERS", {})
7
.get("facebook", {})
8
- .get("VERSION", "v13.0")
+ .get("VERSION", "v19.0")
9
)
10
GRAPH_API_URL = (
11
0 commit comments