You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While setting up oauth2.0 with grant type Authorization code, there is no setting for configuring callback url. I think app automatically picks the callback url tauri://localhost/oauth.
Due to this we may need to modify allowed callback urls with our auth provider. I think there should be a configuration on UI to mention callback url like http://localhost:3000 which can be used while making request to auth provider. Regardless of whatever the url mentioned by user, app will intercept the request and extract authorization code. Similar to Insomnia.
This way we can use any localhost url already present in the allowed list of auth provider.
The text was updated successfully, but these errors were encountered:
While setting up oauth2.0 with grant type Authorization code, there is no setting for configuring callback url. I think app automatically picks the callback url
tauri://localhost/oauth
.Due to this we may need to modify allowed callback urls with our auth provider. I think there should be a configuration on UI to mention callback url like
http://localhost:3000
which can be used while making request to auth provider. Regardless of whatever the url mentioned by user, app will intercept the request and extract authorization code. Similar to Insomnia.This way we can use any localhost url already present in the allowed list of auth provider.
The text was updated successfully, but these errors were encountered: