All notable changes to this project will be documented in this file.
- 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
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 pagination of nested resources would break.
- You may now specify the API version to use with
GraphAPI
.
- Facepy now proxies the error message from Facebook for 5XX responses.
- Facepy now raises
FacebookError
on any response in the 5XX range.
FacebookError
,HTTPError
,OAuthError
andSignedRequestError
are now available from thefacepy
module for convenience.GraphAPI
now raisesFacebookError
upon receiving HTTP 500 from Facebook.
GraphAPI
now accepts an argumenttimeout
, which can be eitherNone
or an integer describing how many seconds to wait for a response.
- Fixed an issue where six would cause an
ImportError
unless already installed. It is now a direct dependency.
GraphAPI
now supports securing Graph API requests with application secret proofs.GraphAPI#post
now supports user-generated images.
- 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.
- 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 a bug that caused parsing signed requests to fail when the
user
key is not present.
- Fixed a bug that caused a KeyError for signed requests that were missing some keys for its "page" attribute.
- You may now extend access tokens with
get_extended_access_token
.
- 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.
- Facepy exceptions may now be pickled.
- Fixed a bug that caused pagination to stop prematurely.
- 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
.
SignedRequest#oauth_token
andSignedRequest.OAuthToken
have been removed (deprecated since v0.6).
- Fixed a bug that caused some exceptions to be returned rather than raised.
- 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 a bug that caused
GraphAPI#batch
to crash upon receiving legacy errors from Facebook.
- Facepy will now raise
OAuthError
for authorization-related errors. - Facepy will now reuse the connection to Facebook.
- Fixed a bug that caused a KeyError upon parsing errors without an error code.
- Facepy now raises
GraphAPI.HTTPError
for requests whose transport failed, andGraphAPI.FacebookError
for requests that produced an error in Facebook's API.
- Fixed a bug that caused some errors to be ignored.
- Fixed a bug that caused an error for empty batch responses.
- Facepy now supports batch requests.
- Updated requests.
- Fixed a bug that caused
SignedRequest.User#has_authorized_application
to be incorrect for signed requests with an user id, but no OAuth Token. - Fixed a bug that caused queries that returned 3xx status codes to yield a blank string
- Fixed a bug that caused installation to fail in some circumstances.
- Fixed a bug that caused a KeyError upon parsing a signed request that didn't include the user's age.
- Fixed a bug that caused a NameError upon providing a list of strings as a Graph API parameter.
- Search results may now be paged.
facepy.VERSION
is nowfacepy.__version__
- It is now considerably easier to create signed requests programmatically.
- Facepy now returns the complete API response instead of just its "data" attribute.
- Facepy is now compatible with Python 2.4.
- Fixed a bug that caused a KeyError if the user's locale or country is missing from the signed request.
- Fixed a bug that caused a TypeError upon parsing signed requests in unicode.
- Added support for parsing and reverse-engineering signed requests.
- Added support for file-like objects in POST and PUT.
- Fixed a bug that prevented the 'page' argument to GraphAPI#get from working correctly.
- GraphAPI#get now has a new argument 'page', which returns a generator that iterates over each page of results.
- The GraphAPI class may now be initialized by signed request.
- Fix a bug that caused non-JSON data (e.g. pictures) to raise a ValueError.
- Fix a bug that caused a TypeError if the 'path' argument is an integer.
- Exceptions have been moved.