Skip to content

Releases: oauthlib/oauthlib

0.6.0

25 Jul 07:05
Compare
Choose a tag to compare

OAuth 1 & 2 provider API refactor with breaking changes:

  • All endpoint methods change contract to return 3 values instead of 4. The new
    signature is headers, body, status code where the initial redirect_uri
    has been relocated to its rightful place inside headers as Location.
  • OAuth 1 Access Token Endpoint has a new required validator method
    invalidate_request_token.
  • OAuth 1 Authorization Endpoint now returns a 200 response instead of 302 on
    oob callbacks.

0.5.1

25 Jul 07:05
Compare
Choose a tag to compare
  • OAuth 1 provider fix for incorrect token param in nonce validation.

0.5.0

25 Jul 07:06
Compare
Choose a tag to compare

OAuth 1 provider refactor. OAuth 2 refresh token validation fix.

0.4.2

25 Jul 07:10
Compare
Choose a tag to compare

OAuth 2 draft to RFC. Removed OAuth 2 framework decorators.

0.4.1

25 Jul 07:11
Compare
Choose a tag to compare

Documentation corrections and various small code fixes.

0.4.0

25 Jul 07:11
Compare
Choose a tag to compare

OAuth 2 Provider support (experimental).

0.3.8

25 Jul 07:12
Compare
Choose a tag to compare

OAuth 2 Client now uses custom errors and raise on expire.

0.3.7

25 Jul 07:12
Compare
Choose a tag to compare

OAuth 1 optional encoding of Client.sign return values.

0.3.6

25 Jul 07:13
Compare
Choose a tag to compare

Revert default urlencoding.

0.3.5

25 Jul 07:13
Compare
Choose a tag to compare

Default unicode conversion (utf-8) and urlencoding of input.