future-doctor-89396
02/02/2023, 1:02 PM/self-service/login/browser
it contain everything to make password flow work but nothing about all OIDC flow. I need to submit the flow with just the provider and the method of OIDC to get an error response 422 Unprocessable Entity
with a payload containing the url i should use {
"error": {
"id": "browser_location_change_required",
"code": 422,
"status": "Unprocessable Entity",
"reason": "In order to complete this flow please redirect the browser to: <https://github.com/login/oauth/authorize?client_id=client_id&redirect_uri=redirect_url&response_type=code&state=state>",
"message": "browser location change required"
},
"redirect_browser_to": "<https://github.com/login/oauth/authorize?client_id=client_id&redirect_uri=redirect_url&response_type=code&state=state>"
}
Is it the intended way to do the flow? The first flow request /self-service/login/browser
should send this redirect urlmillions-flower-65543
03/14/2023, 1:16 PMfuture-doctor-89396
03/14/2023, 1:42 PM