PowerApps 自定义连接器 AADSTS50011:请求中指定的回复 url 与为应用程序配置的回复 url 不匹配
PowerApps Custom Connector AADSTS50011: The reply url specified in the request does not match the reply urls configured for the application
我正在尝试在 PowerApps 中创建自定义连接器,以便连接到我们的 Jira 服务器。
我正在尝试使用 OAuth 身份验证,但我无法正确配置它。
我得到这个:
AADSTS50011: The reply url specified in the request does not match the
reply urls configured for the application: "App Id here"
在 Azure 中,我尝试将回复 url 更改为几项内容,但没有成功:
- 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
我已授予多项管理员权限(图表)。我尝试使用管理员帐户和非管理员帐户登录,错误仍然存在。
我遵循了几个指南,包括 this one and this one.
是什么导致了这个错误,我该如何正确配置它?
编辑:
您代码中的回复url必须与azure portal中的回复相同。
您可以使用fiddler 来捕获请求url,您会在授权端点中找到redirect_uri。然后在 Azure 门户中使用这个。
类似于 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
复制redirect_uri
的值
我正在尝试在 PowerApps 中创建自定义连接器,以便连接到我们的 Jira 服务器。
我正在尝试使用 OAuth 身份验证,但我无法正确配置它。 我得到这个:
AADSTS50011: The reply url specified in the request does not match the reply urls configured for the application: "App Id here"
在 Azure 中,我尝试将回复 url 更改为几项内容,但没有成功:
- 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
我已授予多项管理员权限(图表)。我尝试使用管理员帐户和非管理员帐户登录,错误仍然存在。 我遵循了几个指南,包括 this one and this one.
是什么导致了这个错误,我该如何正确配置它?
编辑:
您代码中的回复url必须与azure portal中的回复相同。
您可以使用fiddler 来捕获请求url,您会在授权端点中找到redirect_uri。然后在 Azure 门户中使用这个。
类似于 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
复制redirect_uri