I am trying to create a Custom Connector in PowerApps so I can connect to our Jira Server.
I am trying to use OAuth Authentication but I can't configure it properly. I am getting this:
AADSTS50011: The reply url specified in the request does not match the reply urls configured for the application: "App Id here"
In Azure I have tried to change the Reply url to several things but with no luck:
- https://tenantName.tenantNamelogin.com/tenantName.onmicrosoft.com/oauth2/authresp
- https://login.windows.net/.auth/login/aad/callback
- http://localhost:31544
- http://localhost:61659/signin-oidc
I have granted several rights (Graph) as admin. I have tried to login with admin accounts and non admin accounts, error remains the same. I have followed several guides including this one and this one.
What is causing this error and what can I do to configure this properly?
https://login.microsoftonline.com/{tenant}/oauth2/authorize? client_id=6731de76-14a6-49ae-97bc-6eba6914391e &response_type=code &redirect_uri=http%3A%2F%2Flocalhost%3A12345 &response_mode=query &resource=https%3A%2F%2Fservice.contoso.com%2F &state=12345
Copy the value ofredirect_uri
– Tony Ju