Authorize
documentedEntry point to browser-based authentication flows; redirects the user to the identity provider for login.
GET /authorizeAuthentication APIno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://{{$auth0_domain}}/authorize" \
-G \
-H "Accept: application/json" \
-d "response_type={{$response_type}}" \
-d "client_id={{AUTH0_CLIENT_ID}}" \
-d "redirect_uri={{$redirect_uri}}" \
-d "scope={{$scope}}" \
-d "state={{$state}}" \
-d "audience={{$audience}}"