How do I call Auth0 Management API from my Django App?

Hi there,

I have a Django App, and I have integrated Auth0 with it. I need to call the Management API in my Django backend to do some custom stuff in different views. I want to know that how do I call the Management API in Django App/backend?

1 Like

Hi @khubikhawar

Use the client credentials grant, AKA M2M. You can call the /token endpoint in your python backend.

John

@john.gateley thank you for your reply and advice. Can you provide an example explaining what you said?

Hi @khubikhawar

The docs are here: Client Credentials Flow

You’ll have to convert that to Python/Django.

John

2 Likes