Im trying to use the bitwarden public API to manage users but for some reason, I am not able to generate an access token using my organization API key.
I keep getting a 400 response invalid_client.
Im doing a post to “https://identity.bitwarden.eu/connect/token”
auth_data = {
‘grant_type’: ‘client_credentials’,
‘client_id’: client_id,
‘client_secret’: client_secret,
‘scope’: ‘api.organization’
}