I am creating a custom connector to an internal API which requires OAuth security.
On the security page, I enter all the information as needed and when the connector is saved, it will general a Redirect URL (https://global.consent.azure-apim.net/redirect), which is then added to the valid call back list on the Azure App Registration list.
However, when I go to test the connector, I get the error AADSTS500113: No reply address is registered for the application
Digging a bit deeper, in the URL of the error page, I can see that there's an embedded redirect (in red)
https://login.microsoftonline.com/common/oauth2/authorize?response_type=code&client_id=...&redirect_uri=https%3A%2F%2Femea.flow.microsoft.com%2Foauth2-redirect.html&
When this is added to the App Registration valid redirect list, it then goes the that URL but this results in a 404 error page.
The connector "saves" OK, but it cannot be tested, and when it is implemented in a flow, it fails with a 401 error code and the error message "Invalid or missing token"
So, this is a bit of a show-stopper at the moment as i cannot create custom data connectors.