The OAuth2.0 spec details a query parameter "response_mode" that can be set to "form_post" to change the behavior of the OAuth redirect request payload to be put into a POST request as opposed to the query parameters. This is a critical behavior for us to be able to support box in our current hosting environment because Azure Functions has an active bug that causes the "code" parameter to be intercepted by the system meaning the request never makes it to our service endpoint.
I have attempted to use this behavior with box, but it does not appear to support it properly. Does anyone have any information here?
Final: OAuth 2.0 Form Post Response Mode (openid.net)
Authorize user - API Reference - Box Developer Documentation
