Hi!
I’m testing Okta sign in APIs. I read some examples like below:
curl -v -X POST \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{
"username": "dade.murphy@example.com",
"password": "correcthorsebatterystaple",
"options": {
"multiOptionalFactorEnroll": false,
"warnBeforePasswordExpired": false
}
}' "https://${yourOktaDomain}/api/v1/authn"
The password is a plain text. Okta doesn’t have a way to send this password encrypt or hashed?
Thanks!