Hi all,
I'm trying use invokeHTTP to get a digest and token from an API, here my curl command :
curl --silent -ik --url https://${OKAPI_HOST}/oauth/access_token -H "Authorization: Bearer $(base64 -w 0 < ${KEYTAB_FILE})" -d grant_type=client_credentials --data-urlencode scope=${SCOPE}
how send parameter to invokeHTTP ? I'm thinking use updateAttribute to set scope, Authorization but it don't work.
thanks