HI all,
I wanted to use auth0 together with Postman but that does not work as it needs an audience in the authentication header.
I thought that, if I use a M2M application and create a client id/secret AND set the default audience to the audience it should be that it would work but thats not the case…
Is there any way possible to execute api calls using the standard oauth2 flows without feeding the audience tag?
When I call without an audience tag I get:
POST https://domain.eu.auth0.com/oauth/token
Accept: application/json, text/json, text/javascript, application/xml, text/xml, application/x-plist, application/x-www-form-urlencoded, text/plain, text/html, application/xhtml+xml,
Content-Type: application/x-www-form-urlencoded;charset=UTF-8
Authorization: Basic==
---Body---
grant_type=client_credentials
then I get this
**Error** OAuth 2 Response 'Access Token' Request failed: forbidden (403)
HTTP 403
---Body---
{"error":"access_denied","error_description":"Third party clients are not allowed access to APIv1"}