Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion docs/changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ Version 4.0.0 (unreleased)
- Add support for Python 3.8.
- Remove support for Python 2.7 and 3.4.
- Add support for Graph API versions 3.2, 3.3, 4.0, 5.0, 6.0, 7.0 and 8.0.
- Remove support for Graph API versions 2.8, 2.9, 2.10, 2.11, 2.12, and 3.0.
- Remove support for Graph API versions 2.8, 2.9, 2.10, 2.11, 2.12, 3.0 and
3.1.
- Change default Graph API version to 2.10.
- Add support for securing Graph API Calls with a proof based on the
application secret (#454).
Expand Down
2 changes: 1 addition & 1 deletion facebook/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
FACEBOOK_GRAPH_URL = "https://graph.facebook.com/"
FACEBOOK_WWW_URL = "https://www.facebook.com/"
FACEBOOK_OAUTH_DIALOG_PATH = "dialog/oauth?"
VALID_API_VERSIONS = ["3.1", "3.2", "3.3", "4.0", "5.0", "6.0", "7.0", "8.0"]
VALID_API_VERSIONS = ["3.2", "3.3", "4.0", "5.0", "6.0", "7.0", "8.0"]
VALID_SEARCH_TYPES = ["place", "placetopic"]


Expand Down