solved
For anyone who's trying to fix this: this error means that minio is not being able to read your .../.well-known/openid-configuration
url*.
- (set through MINIO_IDENTITY_OPENID_CONFIG_URL or identity_openid > config_url in the json cnofig file)
original post
I'm trying to call minIO's AssumeRoleWithClientGrants, using postman I request (POST)
http://localhost:9000/?Action=AssumeRoleWithClientGrants&DurationSeconds=10000&Token=__SOME_TKN____&Version=2011-06-15
But I'm getting this response:
<?xml version="1.0" encoding="UTF-8"?>
<ErrorResponse xmlns="https://sts.amazonaws.com/doc/2011-06-15/">
<Error>
<Type></Type>
<Code>InvalidParameterValue</Code>
<Message>provider jwt doesn't exist</Message>
</Error>
<RequestId>163E438F6C8286CC</RequestId>
</ErrorResponse>
I also ran this python example, and when I click on authenticate and then on approve once --WSO2-- it redirects me to an error page that says
botocore.exceptions.ClientError: An error occurred (InvalidParameterValue) when calling the AssumeRoleWithWebIdentity operation: provider jwt doesn't exist
Any help would be much appreciated,