CF2021 中的 CFOAUTH - 由于重定向而无法获取结果

CFOAUTH in CF2021 - Can't get the result because of the redirecturi

提问人:spoony 提问时间:10/4/2023 最后编辑:admcfajnspoony 更新时间:10/9/2023 访问量:33

问:

我正在使用 CFOAuth 调用由另一个团队创建的自定义身份验证。它可以工作,但问题是由于重定向,我无法检索结果。我知道它会回到重定向页面,因为我在那里停止它,但结果不存在。我如何获得结果?

<cfoauth 
   clientid="client.userprofile" 
   scope="app.client.userprofile"
   authendpoint="https://www.authorization-location.com/connect/authorize" 
   accesstokenendpoint="https://www.authorization-location.com/connect/token"
   result="authResult" 
   redirecturi="https://www.my-location.com/appname/index.cfm"
   urlparams="code_challenge=abcxyz&code_challenge_method=S256&response_type=code" />

我尝试在 cfoauth 调用后引用结果,但它永远不会到达代码的那部分,因为如果成功,它会重定向到新页面。我尝试从新页面引用结果,但当它到达那里时它不存在。

OAuth 冷融合

评论


答: 暂无答案