x4k3p
x4k3p

Reputation: 1779

Use cURL with Kerberos to auth on Keycloak

I have following setup given:

As I know to use cURL with Kerberos auth it looks similar to this:

$ curl --negotiate -u : https://app.example.com/index.html

One can use Resource Owner Password Credentials Grant Type to get an Access-Token in non-interactive manner. But how do I get it using cURL with a Kerberos ticket and Keycloak?

Upvotes: 7

Views: 2809

Answers (1)

Joe
Joe

Reputation: 588

There is an example [1] in the official documentation:

curl \
  -d "client_id=myclient" \
  -d "client_secret=40cc097b-2a57-4c17-b36a-8fdf3fc2d578" \
  -d "username=user" \
  -d "password=password" \
  -d "grant_type=password" \
  "http://localhost:8080/auth/realms/master/protocol/openid-connect/token"

Upvotes: 1

Related Questions