How can I customise verification_uri in device flow?

I am following the device flow: Device Authorization Flow.
I can make it work but how I can use custom domain as the “verification_uri_complete” returned from device code request?

Hi @joey,

Welcome to the Auth0 Community!

Please ensure that your custom domain is specified in your device code request

For example:

curl --request POST \
  --url 'https://{yourCustomDomain}/oauth/device/code' \
  --header 'content-type: application/x-www-form-urlencoded' \
  --data 'client_id={yourClientId}' \
  --data 'scope={scope}' \
  --data 'audience={audience}'

Let me know if you encounter any additional issues.

Thanks,
Rueben

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.