All Versions
41
Latest Version
Avg Release Cycle
127 days
Latest Release
1084 days ago
Changelog History
Page 1
Changelog History
Page 1
-
v1.0.12 Changes
April 04, 2020๐ Fixed
- Mitigated a Facebook bug that causes
get_extended_access_token
to sometimes fail because it does not includeexpires_in
. This now defaults to 1 hour.
- Mitigated a Facebook bug that causes
-
v1.0.11 Changes
September 29, 2019๐ Fixed
- Fixed a bug that caused
get_extended_access_token
to fail on newer Graph API versions.
- Fixed a bug that caused
-
v1.0.10 Changes
April 17, 2019โ Added
- ๐ Support for Python 3.7 (to be fair, it already worked, just tests were failing).
- The logger is now named so you can silence retries.
- You may now send additional data with DELETE requests.
๐ Fixed
- You may no longer search for posts, users, events, groups or checkins, as Facebook no longer allows it.
-
v1.0.9 Changes
May 30, 2017โ Added
- The HTTP headers of the response are now available in
response['headers']
. FacebookError
now hasfbtrace_id
to aid in debugging.
๐ Fixed
- Python 3 compatibility.
- Paginated requests now retry same as the first.
- ๐ Fixed a bug where image files would throw a UnicodeDecodeError.
โ Removed
- FQL (which is not available since Graph API version 2.1)
- The HTTP headers of the response are now available in
-
v1.0.8 Changes
January 26, 2016๐ Fixed
- Fixed an issue where
get_application_access_token
using Graph API versions 2.3+ would return JSON instead of a query string, resulting in anAttributeError
to be thrown.
- Fixed an issue where
-
v1.0.7 Changes
September 08, 2015๐ Fixed
- Fixed an issue where
get_extended_access_token
using Graph API versions 2.3+ would return JSON instead of a query string, resulting in anAttributeError
to be thrown. FacebookError
instances now contain additional data about the error.
- Fixed an issue where
-
v1.0.6 Changes
January 07, 2015๐ Fixed
- ๐ Fixed an issue where pagination of nested resources would break.
-
v1.0.5 Changes
January 05, 2015โ Added
- You may now specify the API version to use with
GraphAPI
.
- You may now specify the API version to use with
-
v1.0.4 Changes
September 28, 2014โ Added
- Facepy now proxies the error message from Facebook for 5XX responses.
- Facepy now raises
FacebookError
on any response in the 5XX range.
-
v1.0.3 Changes
June 17, 2014โ Added
FacebookError
,HTTPError
,OAuthError
andSignedRequestError
are now available from thefacepy
module for convenience.GraphAPI
now raisesFacebookError
upon receiving HTTP 500 from Facebook.