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
authorization
create_authorization
In api/devices.py#162 the statement...
api/devices.py#162
request = authorization_api.create_authorization(authorization)
should be
request = authorization_api.create_authorization(authorization=authorization)
This is related to.
Note that on clicking the Auth link in the flask UI, the tutorial application is now returning...
ApiException influxdb_client.rest.ApiException: (400) Reason: Bad Request HTTP response headers: HTTPHeaderDict({'Content-Type': 'application/json; charset=utf-8', 'X-Influxdb-Build': 'OSS', 'X-Influxdb-Version': 'v2.7.11', 'X-Platform-Error-Code': 'invalid', 'Date': 'Wed, 04 Dec 2024 13:04:14 GMT', 'Content-Length': '163'}) HTTP response body: { "code": "invalid", "message": "invalid json structure: json: cannot unmarshal object into Go struct field postAuthorizationRequest.orgID of type platform.ID" }
The example here is causing confusion for some users.
I tried to push a branch with this change to create a PR, however I do not have write permissions to this repository.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In
api/devices.py#162
the statement...should be
This is related to.
Note that on clicking the Auth link in the flask UI, the tutorial application is now returning...
The example here is causing confusion for some users.
I tried to push a branch with this change to create a PR, however I do not have write permissions to this repository.
The text was updated successfully, but these errors were encountered: