diff --git a/internal/ckwk/api.go b/internal/ckwk/api.go index 7769224..1f81e5d 100644 --- a/internal/ckwk/api.go +++ b/internal/ckwk/api.go @@ -39,8 +39,8 @@ func NewWK(username, password, host string, cookies []*http.Cookie) *WK { req := request.NewClient(&request.Config{ UserAgent: "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/140.0.0.0 Safari/537.36 Edg/140.0.0.0", - Proxy: "http://127.0.0.1:9000", - VerifySSL: false, + // Proxy: "http://127.0.0.1:9000", + // VerifySSL: false, }) if len(cookies) > 0 { req.SetCookies(cookies) diff --git a/internal/router/router.go b/internal/router/router.go index 72ede2b..45ea1ea 100644 --- a/internal/router/router.go +++ b/internal/router/router.go @@ -24,9 +24,9 @@ func SetupRouter() *gin.Engine { } r := gin.Default() r.Use(cors.New(cors.Config{ - AllowOrigins: []string{"*.kmux.cn"}, + AllowOrigins: []string{"*.kmux.cn*"}, AllowMethods: []string{"GET", "POST", "PUT", "DELETE", "PATCH"}, - AllowHeaders: []string{"X-Session-Id"}, + AllowHeaders: []string{"*", "X-Session-Id"}, ExposeHeaders: []string{"Content-Length"}, AllowCredentials: true, MaxAge: 12 * time.Hour,