Amazon Cognito 注销问题所需的字符串参数“redirect_uri”不存在

问题描述 投票:0回答:1

我可以直接运行我的注销URL。

domain/logout?client_id={clientId}&logout_uri=https://localhost:7098/

但是,当我将此链接作为网站上按钮的 href 且按钮时代单击“所需的字符串参数‘redirect_uri’不存在”时,会出现错误。

我添加了允许的回调 URL 和允许的注销 URL。

amazon-web-services asp.net-core amazon-cognito logout
1个回答
0
投票

如果注销 URL 与允许的回调中的注销 URL 不完全匹配,则会出现此错误。

我怀疑您将

https://localhost:7098
作为允许的回调 URL(不带尾部斜杠)。

调整到

domain/logout?client_id={clientId}&logout_uri=https://localhost:7098
应该可以解决问题。

祝您的项目顺利。

© www.soinside.com 2019 - 2024. All rights reserved.