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
Documentation instructs to use Configuration object like this in many places:
configuration = extremecloudiq.Configuration( access_token = 'YOUR_BEARER_TOKEN' )
However in reality the Configuration object implemented in https://github.com/extremenetworks/ExtremeCloudIQ-SDK-Python/blob/main/extremecloudiq/configuration.py does not accept access_token as initialization parameter. After you have created the configuration object, you can set token by configuration.access_token = 'YOUR_BEARER_TOKEN'. Either documentation or implementation needs to be fixed.
access_token
configuration.access_token = 'YOUR_BEARER_TOKEN'
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Documentation instructs to use Configuration object like this in many places:
However in reality the Configuration object implemented in https://github.com/extremenetworks/ExtremeCloudIQ-SDK-Python/blob/main/extremecloudiq/configuration.py does not accept
access_token
as initialization parameter. After you have created the configuration object, you can set token byconfiguration.access_token = 'YOUR_BEARER_TOKEN'
. Either documentation or implementation needs to be fixed.The text was updated successfully, but these errors were encountered: