package main
import (
"bytes"
"fmt"
"net/http"
"moul.io/http2curl"
)
func req2curl(req *http.Request) string {
out, _ := http2curl.GetCurlCommand(req)
return out.String()
}
func main() {
var req *http.Request
req, _ = http.NewRequest(http.MethodGet, "https://github.com/manifest.json", nil)
fmt.Println(req2curl(req))
req, _ = http.NewRequest(http.MethodGet, "https://github.com/manifest.json", bytes.NewBuffer(nil))
fmt.Println(req2curl(req))
str := ""
req, _ = http.NewRequest(http.MethodGet, "https://github.com/manifest.json", bytes.NewBuffer([]byte(str)))
fmt.Println(req2curl(req))
}
package main
import (
"bytes"
"fmt"
"net/http"
"moul.io/http2curl"
)
func main() {
data := bytes.NewBufferString(`{"hello":"world","answer":42}`)
req, _ := http.NewRequest("PUT", "http://www.example.com/abc/def.ghi?jlk=mno&pqr=stu", data)
req.Header.Set("Content-Type", "application/json")
command, _ := http2curl.GetCurlCommand(req)
fmt.Println(command)
}