Simiular to this previous unanswered question I’m interested to learn how I can retrieve application metadata that is set in Application Advanced Settings. When decoded the JWT doesn’t appear to contain this information.
The request is made as follows:
curl -X POST https://URL/oauth/token
-d ‘{“client_id”:“ID”,“client_secret”:“SECRET”,“audience”:“AUDIENCE”,“grant_type”:“client_credentials”}’
Hi John - thanks for that. No I haven’t tried using rules, and it looks like it could work. Do you know whether it is possible for a rule to be executed only on authentication for a specific application. I wouldn’t want this rule for M2M authentications to be applied to the rest of our Apps’ authentication flows.
From my understanding, all rules get executed in sequence for every auth but you can check the context.clientID within the rule to immediately return, thus skipping the rule logic…
if (allowedClientIds.indexOf(context.clientID) === -1) { return callback(null, user, context); }