SampleOAuth2_UsingPythonClient icon indicating copy to clipboard operation
SampleOAuth2_UsingPythonClient copied to clipboard

Django Sample app using Python OAuth client

Results 7 SampleOAuth2_UsingPythonClient issues
Sort by recently updated
recently updated
newest added
trafficstars

To reproduce, revoke the token and then try to do an API call: ``` Internal Server Error: /quickbooks/qbo_request Traceback (most recent call last): File "/usr/local/lib/python3.9/site-packages/django/core/handlers/exception.py", line 47, in inner response...

Need to pull reports not company info, tried changing the route but it didn't work. Any suggestions?

Took me a bit to realize why I wasn't progressing to the connected page. This is because the returnURL needs to be app/callback for that to happen. Should probably have...

**ISSUE:** ``` try: response = auth_client.get_user_info() except ValueError: return HttpResponse('id_token or access_token not found.') except AuthClientError as e: print(e.status_code) print(e.intuit_tid) return HttpResponse(response.content) ``` **Below is the fixed code for issue**...

If app doesn't have authentication rights, then the code sends a type error. Fixed by wrapping casting response.content to string. User can then see the authorization error message in the...

- Current version of intuit-oauth - current version of requests - Django 5.1 - Tested with python 3.12