From d4346712710e1033b37db713469b1071d52f0811 Mon Sep 17 00:00:00 2001 From: pikachuim Date: Tue, 4 Aug 2026 11:49:16 +0800 Subject: [PATCH 1/2] feat(drivers): fix guangya ClientID --- drivers/guangyapan/meta.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/guangyapan/meta.go b/drivers/guangyapan/meta.go index 033f34c3d..9e3ff6daf 100644 --- a/drivers/guangyapan/meta.go +++ b/drivers/guangyapan/meta.go @@ -14,7 +14,7 @@ type Addition struct { VerificationID string `json:"verification_id" type:"text" help:"Auto-generated after sending SMS code; do not edit manually"` AccessToken string `json:"access_token" help:"Bearer access token (optional if refresh_token is provided)"` RefreshToken string `json:"refresh_token" help:"Refresh token for auto-login/auto-refresh"` - ClientID string `json:"client_id" required:"true" help:"Client ID for GuangYaPan API, must be provided" default:"aMe-8VSlkrbQXpUR"` + ClientID string `json:"client_id" required:"true" help:"Client ID for GuangYaPan API, must be provided" DeviceID string `json:"device_id" help:"Optional custom device id (32 hex chars), auto-generated when empty"` DeviceSign string `json:"device_sign" help:"Optional custom X-Device-Sign header (generated from device_id when empty)"` PageSize int `json:"page_size" type:"number" default:"100"` From e5ca15edade08ebeec4062896c245aabb27ff01c Mon Sep 17 00:00:00 2001 From: pikachuim Date: Tue, 4 Aug 2026 11:50:52 +0800 Subject: [PATCH 2/2] feat(drivers): fix guangya ClientID --- drivers/guangyapan/meta.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/guangyapan/meta.go b/drivers/guangyapan/meta.go index 9e3ff6daf..6344a92c4 100644 --- a/drivers/guangyapan/meta.go +++ b/drivers/guangyapan/meta.go @@ -14,7 +14,7 @@ type Addition struct { VerificationID string `json:"verification_id" type:"text" help:"Auto-generated after sending SMS code; do not edit manually"` AccessToken string `json:"access_token" help:"Bearer access token (optional if refresh_token is provided)"` RefreshToken string `json:"refresh_token" help:"Refresh token for auto-login/auto-refresh"` - ClientID string `json:"client_id" required:"true" help:"Client ID for GuangYaPan API, must be provided" + ClientID string `json:"client_id" required:"true" help:"Client ID for GuangYaPan API, must be provided"` DeviceID string `json:"device_id" help:"Optional custom device id (32 hex chars), auto-generated when empty"` DeviceSign string `json:"device_sign" help:"Optional custom X-Device-Sign header (generated from device_id when empty)"` PageSize int `json:"page_size" type:"number" default:"100"`