We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The oauth API has changed, but the README hasn't been updated:
from hubspot.auth.oauth import ApiException try: tokens = api_client.auth.oauth.tokens_api.create( grant_type="authorization_code", redirect_uri='http://localhost', client_id='client_id', client_secret='client_secret', code='code' ) except ApiException as e: print("Exception when calling create_token method: %s\n" % e)
The above doesn't work anymore - it should read api_client.oauth.tokens_api.create(...) instead.
api_client.oauth.tokens_api.create(...)
The text was updated successfully, but these errors were encountered:
Hey @LucidDan. You are definitely right. We will fix this in the next version.
Sorry, something went wrong.
alzheltkovskiy-hubspot
No branches or pull requests
The oauth API has changed, but the README hasn't been updated:
The above doesn't work anymore - it should read
api_client.oauth.tokens_api.create(...)
instead.The text was updated successfully, but these errors were encountered: