Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

convert Request of fasthttp、hertz and resty to CURL command line

License

NotificationsYou must be signed in to change notification settings

li-jin-gou/http2curl

Repository files navigation

convert Request offasthttp,hertz and net/http to CURL command line and fork frommoul/http2curl

Install

go get github.com/li-jin-gou/http2curl

Usage

FastHttp

funcFastHttpDemo() {// fasthttpvarreq fasthttp.Requestreq.SetRequestURI("https://example.com/index")req.Header.SetMethod(fasthttp.MethodPost)req.SetBody([]byte(`{"a":"b"}`))req.Header.Set("Content-Type","application/json")c,_:=http2curl.GetCurlCommandFastHttp(&req)fmt.Println(c)// Output: curl -k -X 'POST' -d '{"a":"b"}' -H 'Content-Type: application/json' 'https://example.com/index' --compressed}

Hertz

funcHertzDemo() {// hertzreq:=protocol.NewRequest(consts.MethodGet,"https://example.com/index",nil)req.URI().QueryArgs().Add("a","1")req.URI().QueryArgs().Add("b","2")req.Header.Set("a","2")c,_:=http2curl.GetCurlCommandHertz(req)fmt.Println(c)// Output: curl -k -X 'GET' -H 'A: 2' -H 'Host: example.com' 'https://example.com/index?a=1&b=2' --compressed}

net/http

funcNetHttpDemo() {req,_:=http.NewRequest(http.MethodPost,"https://example.com/index",bytes.NewBufferString(`{"a":"b"}`))req.Header.Set("Content-Type","application/json")c,_:=http2curl.GetCurlCommand(req)fmt.Println(c)// Output: curl -k -X 'POST' -d '{"a":"b"}' -H 'Content-Type: application/json' 'https://example.com/index' --compressed}

Resty

funcRestyDemo() {varreq*resty.Requestclient:=resty.New()resp,_:=client.R().SetHeader("Content-Type","application/json").SetBody([]byte(`{"a":"b"}`)).Post("https://example.com/index")req=resp.Requestc,_:=http2curl.GetCurlCommandResty(req)fmt.Println(c)// Output: curl -k -X 'POST' -d '{"a":"b"}' -H 'Accept: application/json' -H 'Content-Type: application/json' -H 'User-Agent: go-resty/2.12.0 (https://github.com/go-resty/resty)' 'https://example.com/index' --compressed}

About

convert Request of fasthttp、hertz and resty to CURL command line

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages


[8]ページ先頭

©2009-2025 Movatter.jp