oauth-pythonclient icon indicating copy to clipboard operation
oauth-pythonclient copied to clipboard

The Python OAuth client provides a set of methods that make it easier to work with Intuit's OAuth and OpenID implementation.

Results 20 oauth-pythonclient issues
Sort by recently updated
recently updated
newest added

I´m using the[ Oauth 2.0](https://developer.intuit.com/app/developer/qbo/docs/develop/authentication-and-authorization/oauth-2.0) flow process with Python SDK, in the step 12 using the _get_bearer_token_ function i get the error shown in the image. I make the peticion...

This PR makes `AuthClientError` pickleable. This is useful in distributed or multiprocessing environments such as Celery.

Hi, As mentioned [here](https://developer.intuit.com/app/developer/qbo/docs/develop/sdks-and-samples-collections/python/python_oauth_client), it seems not possible to automate the way we can get authorization code, before getting access token and refresh token (which is taken into account thanks...

This patch removes the `enum-compat` dependency and replaces it with a conditional dependency on `enum34`. This is all the `enum-compat` package does: https://github.com/jstasiak/enum-compat/blob/ae41cfa712e837596f7d26a5283be40ec5b84084/setup.py#L43

I need to preserve state after redirecting (eg, using a custom parameter), but it seems the state parameter is currently only used for CSRF token. Is there another way to...

It looks like the documentation isn't accurate anymore. Step 11: https://developer.intuit.com/app/developer/qbo/docs/develop/authentication-and-authorization/oauth-2.0 | Parameter | Description | | --------- | ----------- | | code | The authorization code sent by the...

Using a thirdparty dependency as big as `future` for just `urlencode()` does not seem worth it

https://github.com/intuit/oauth-pythonclient/blob/058eedf8f651a8af207e6f6d4a2ebf05e906f7b7/intuitlib/client.py#L67 This value never appears to be updated anywhere in the project. So no matter when this variable is referenced--it will always be `None`. One would imagine that this would...

Currently these only set the values in the json response as attributes of the AuthClient this makes it difficult to know which attributes will be available when, for instance, `get_bearer_token`...