From 631959c0ecc57d663ebced7839391b5476926d4b Mon Sep 17 00:00:00 2001 From: xuyang Date: Fri, 28 Mar 2025 14:13:59 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=9B=E5=BB=BA=E5=90=8C=E6=AD=A5=E5=88=B0?= =?UTF-8?q?=E6=B8=B8=E6=88=8F=E4=B8=AD=E5=BF=83=E8=AF=B7=E6=B1=82=E4=BC=98?= =?UTF-8?q?=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- services/script/script.go | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/services/script/script.go b/services/script/script.go index 30287f7..9390924 100644 --- a/services/script/script.go +++ b/services/script/script.go @@ -2,13 +2,13 @@ package script import ( "encoding/json" - "fmt" "golib.gaore.com/GaoreGo/gaore-common-sdk-go/sdk/requests" "golib.gaore.com/GaoreGo/gaore-common-sdk-go/sdk/responses" ) type OpenGameReq struct { *requests.RpcRequest + GameID int `position:"Query" field:"game_id"` } type OpenGameResp struct { @@ -25,10 +25,11 @@ func (baseResponse *OpenGameResp) GetHttpContentBytes() []byte { func CreateOpenGameReq(gameId int) *OpenGameReq { req := &OpenGameReq{ &requests.RpcRequest{}, + gameId, } - req.InitWithApiInfo(HOST, VERSION, "open_game.php?game_id="+fmt.Sprintf("%v", gameId)) - req.Method = requests.POST + req.InitWithApiInfo(HOST, VERSION, "open_game.php") + req.Method = requests.GET return req }