All Versions
41
Latest Version
Avg Release Cycle
127 days
Latest Release
1156 days ago
Changelog History
Page 2
Changelog History
Page 2
-
v1.0.2 Changes
June 10, 2014โ Added
- โฑ
GraphAPI
now accepts an argumenttimeout
, which can be eitherNone
or an integer describing how many seconds to wait for a response.
- โฑ
-
v1.0.1 Changes
May 22, 2014๐ Fixed
- ๐ Fixed an issue where six would cause an
ImportError
unless already installed. It is now a direct dependency.
- ๐ Fixed an issue where six would cause an
-
v1.0.0 Changes
May 22, 2014โ Added
- ๐
GraphAPI
now supports securing Graph API requests with application secret proofs. - ๐
GraphAPI#post
now supports user-generated images.
๐ Fixed
- The last bit of the tuple returned from
get_extended_access_token
is nowNone
if the access token won't expire. GraphAPI#batch
can now handle more than 50 requests at a time.- ๐ Fixed a bug that caused unicode URLs to fail.
- ๐
-
v0.9.0 Changes
February 12, 2014โ Added
- ๐ Changed
GraphAPI
methods to returndecimal.Decimal
instances for floating-point numbers instead offloat
, which can cause precision losses not acceptable for financial operations. - Nested dictionaries, lists and sets are now automatically encoded as JSON.
- You may now elect to not verify Facebook's SSL certificate.
- You may now substitute colons with underscores in keys such as
fb:explicitly_shared
. - Facepy is now compatible with Python 3.
๐ Fixed
- ๐ Fixed a bug that caused parsing signed requests to fail when the
user
key is not present.
- ๐ Changed
-
v0.8.4 Changes
November 13, 2012๐ Fixed
- ๐ Fixed a bug that caused a KeyError for signed requests that were missing some keys for its "page" attribute.
-
v0.8.3 Changes
October 04, 2012โ Added
- You may now extend access tokens with
get_extended_access_token
.
๐ Fixed
- ๐ Fixed a bug that caused batch requests with a body to fail.
- ๐ Fixed a bug that caused paths that started with a slash to fail.
- ๐ Fixed a bug that caused exception messages to be omitted.
- You may now extend access tokens with
-
v0.8.2 Changes
July 03, 2012โ Added
- Facepy exceptions may now be pickled.
-
v0.8.1 Changes
July 02, 2012๐ Fixed
- ๐ Fixed a bug that caused pagination to stop prematurely.
-
v0.8.0 Changes
June 22, 2012โ Added
- You may now query application access tokens with
get_application_access_token
. - ๐ฐ
SignedRequest.parse
now returns a dictionary describing the payload of the signed request instead of aSignedRequest
instance. SignedRequest.__init__
now accepts argumentssigned_request
andapplication_secret_key
and no longer facilitates for constructing arbitrary signed requests.SignedRequest#generate
no longer requires the provision ofapplication_secret_key
.- ๐
GraphAPI
now supports retries forget
,post
,delete
,search
andfql
. GraphAPI#get
is now more intelligent about pagination and should no longer query Facebook for another page of results if the current page has less elements thanlimit
.
โ Removed
- ๐
SignedRequest#oauth_token
andSignedRequest.OAuthToken
have been removed (deprecated since v0.6).
๐ Fixed
- ๐ Fixed a bug that caused some exceptions to be returned rather than raised.
- You may now query application access tokens with
-
v0.7.0 Changes
June 13, 2012โ Added
- You may now access the original data of the signed request from
SignedRequest#raw
. - You may now issue FQL queries with
GraphAPI#fql
. FacebookError
exceptions yielded fromGraphAPI#batch
now include the request that produced the error.
๐ Fixed
- ๐ Fixed a bug that caused
GraphAPI#batch
to crash upon receiving legacy errors from Facebook.
- You may now access the original data of the signed request from