Skip to content

Commit 1dc9840

Browse files
committed
feat(facebook): Upgrade Graph API version
1 parent ccfacb2 commit 1dc9840

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

ChangeLog.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ Note worthy changes
3737
- The OAuth2 handshake was not working properly in case of
3838
``SESSION_COOKIE_SAMESITE = "Strict"``, fixed.
3939

40+
- Facebook: the default Graph API version is now v19.0.
41+
4042

4143
0.61.1 (2024-02-09)
4244
*******************

allauth/socialaccount/providers/facebook/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
GRAPH_API_VERSION = (
66
getattr(settings, "SOCIALACCOUNT_PROVIDERS", {})
77
.get("facebook", {})
8-
.get("VERSION", "v13.0")
8+
.get("VERSION", "v19.0")
99
)
1010
GRAPH_API_URL = (
1111
getattr(settings, "SOCIALACCOUNT_PROVIDERS", {})

0 commit comments

Comments
 (0)