Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removes support for deprecated Graph API Version 3.1 #521

Closed
wants to merge 1 commit into from
Closed
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
6 changes: 0 additions & 6 deletions docs/changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,3 @@ Version 0.3.2 (2012-07-28)
- Fixes bug with Unicode app secrets.
- Add optional timeout support for faster API requests.
- Random PEP8 compliance fixes.

Version 0.3.1 (2012-05-16)
==========================

- Minor documentation updates.
- Removes the develop branch in favor of named feature branches.
2 changes: 1 addition & 1 deletion examples/flask/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
facebook-sdk==3.1.0
facebook-sdk==3.2.0
flask>=0.12.3
flask-sqlalchemy==2.1
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