gpt4 book ai didi

asp.net - 使用 F# 和 ASP.NET 启用 CORS

转载 作者:行者123 更新时间:2023-12-04 15:54:45 24 4
gpt4 key购买 nike

如何使用 F# 和 ASP.NET 启用 CORS。我正在尝试通过 Google 对用户进行身份验证,但在浏览器控制台中出现以下错误:

No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://localhost:8080' is therefore not allowed access. If an opaque response serves your needs, set the request's mode to 'no-cors' to fetch the resource with CORS disabled.

这里有一个可重现的例子 https://github.com/sashang/safe-google-auth

它使用 F# 和 SAFE 框架,因此如果您想尝试重现它,您将需要该设置。

您还需要使用 Google+ API (https://console.cloud.google.com/apis/library/plus.googleapis.com) 设置客户端 ID 和密码

完成后将其添加到您的环境中:

重击:

export GOOGLE_ID="client id"
export GOOGLE_SECRET="client secret"

Windows Powershell:

$Env:GOOLGE_ID="client id"
$Env:GOOGLE_SECRET="client secret"

要构建它,克隆 repo 并运行

fake build --target run

然后在浏览器控制台窗口打开的情况下单击按钮 Auth with Google 以查看错误。

最佳答案

在您的 Server.fs 中,您没有调用您的 configure_cors 方法

let app google_id google_secret = 
application {
url ("http://0.0.0.0:" + port.ToString() + "/")
use_router webApp
memory_cache
use_static publicPath
service_config configureSerialization
use_gzip
use_google_oauth google_id google_secret "/oauth_callback_google" []
//use_cors "localhost:8080" configure_cors
configure_cors // Add this line to your program

}

关于asp.net - 使用 F# 和 ASP.NET 启用 CORS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52295216/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com