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.
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_tokenas 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.