Bruno Redirect URL #1146
-
@helloanoop Hi , do we have the Bruno callback/redirect url? Is there way to implement it ? Thanks ! |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 8 replies
-
I'm not Anoop, but I don't quite understand what you're asking for. Could you explain a bit more? |
Beta Was this translation helpful? Give feedback.
-
Bumping this question now that OAuth 2.0 appears to be supported. What should the redirect URL be? |
Beta Was this translation helpful? Give feedback.
-
Have you solved this issue for bruno, if yes please share |
Beta Was this translation helpful? Give feedback.
Redirect URI (aka Callback URL) is the address that (in your example) Azure will redirect the browser after you provide correct login and password. The redirect request started by Azure will contain a sensitive authorization code, so it is important for all parties, that the redirect URI is trusted. In normal situations it points back to the endpoint at the website from which you are trying to access Azure data (e.g.
https://my.app/auth
) or is a custom deep link to some app installed on your device (custom protocols likebruno://
,postman://
,reddit.app://
are for that, but notebruno://
protocol is just a placeholder - Bruno app does not use it in any meaningfull way - perhaps this will …