Hi @win32nipuh ,
Welcome to the Auth0 Community!
Your Audience parameter should reference your own custom API or the Management API, depending on what kind of access control you are looking for when authenticating.
(Reference: Get Access Tokens )
I recommend checking out this related post to answer your question:
Question: What is the Audience?
Answer:
The audience parameter exists as part of the OAuth2.0 protocol. You can read more information from the specification here .
What is it?
The audience (presented as the aud claim in the access token) defines the intended consumer of the token.
This is typically the resource server (API, in the dashboard) that a client (Application) would like to access.
It can be added to the request to authorize i.e. audience: 'https://test-api'
Here is an example where …
Thanks,
Rueben
2 Likes