Skip to content

Instantly share code, notes, and snippets.

@paoloantinori
Created January 26, 2016 15:59
Show Gist options
  • Star 36 You must be signed in to star a gist
  • Fork 19 You must be signed in to fork a gist
  • Save paoloantinori/84c644efb44002493835 to your computer and use it in GitHub Desktop.
Save paoloantinori/84c644efb44002493835 to your computer and use it in GitHub Desktop.
Keycloak Admin API Rest Example
#!/bin/bash
export TKN=$(curl -X POST 'http://localhost:8080/auth/realms/master/protocol/openid-connect/token' \
-H "Content-Type: application/x-www-form-urlencoded" \
-d "username=admin" \
-d 'password=admin' \
-d 'grant_type=password' \
-d 'client_id=admin-cli' | jq -r '.access_token')
curl -X GET 'http://localhost:8080/auth/admin/realms' \
-H "Accept: application/json" \
-H "Authorization: Bearer $TKN" | jq .
@evasyuk
Copy link

evasyuk commented Nov 26, 2019

@mssaisandeep most probably you need to use correct service account with admin-role. Please, start with digging deeper into https://stackoverflow.com/questions/49511606/cannot-create-user-in-the-keycloak-getting-403-status

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment