我尝试与Apiary合作,制作了一个通用模板,将JSON发送到模拟服务器,并有以下代码:
package main
import (
"encoding/json"
"fmt"
"github.com/jmcvetta/napping"
"log"
"net/http"
)
func main() {
url := "http://restapi3.apiary.io/notes"
fmt.Println("URL:>", url)
s := napping.Session{}
h := &http.Header{}
h.Set("X-Custom-Header", "myvalue")
s.Header = h
var jsonStr = []byte(`
{
"title": "Buy cheese and bread for breakfast."
}`)
var data map[string]json.RawMessage
err := json.Unmarshal(jsonStr, &data)
if err != nil {
fmt.Println(err)
}
resp, err := s.Post(url, &data, nil, nil)
if err != nil {
log.Fatal(err)
}
fmt.Println("response Status:", resp.Status())
fmt.Println("response Headers:", resp.HttpResponse().Header)
fmt.Println("response Body:", resp.RawText())
}
这段代码没有正确地发送JSON,但我不知道为什么。JSON字符串在每次调用中都可以不同。我不能用Struct来做这个。
如果你想这样做,你需要使用这个映射来解组json字符串。
var data map[string]interface{}
但是如果你每次都需要修改json,并且为了更方便地初始化你的请求体,你可以使用这个映射来创建json体。
var bodyJsonMap map[string]interface{}{
"key1": val1,
"key2": val2,
...
}
然后将其marshal为json字符串。
使用io。另一个答案中提到的用于大型请求体的管道。这种方法通过将数据从JSON编码器流到网络来避免在内存中构建整个请求体。
这个答案建立在另一个答案的基础上,展示了如何处理错误。总是处理错误!
使用管道的CloseWithError函数将编码错误传播回从http.Post返回的错误。
处理从http返回的错误。帖子
关闭响应体。
代码如下:
r, w := io.Pipe()
go func() {
w.CloseWithError(json.NewEncoder(w).Encode(data))
}()
// Ensure that read side of pipe is closed. This
// unblocks goroutine in scenario where http.Post
// errors out before reading the entire request body.
defer r.Close()
resp, err := http.Post(url, r)
if err != nil {
// Adjust error handling here to meet application requrirements.
log.Fatal(err)
}
defer resp.Body.Close()
// Use the response here.
如果你想这样做,你需要使用这个映射来解组json字符串。
var data map[string]interface{}
但是如果你每次都需要修改json,并且为了更方便地初始化你的请求体,你可以使用这个映射来创建json体。
var bodyJsonMap map[string]interface{}{
"key1": val1,
"key2": val2,
...
}
然后将其marshal为json字符串。
我不熟悉午睡,但使用Golang的net/http包工作得很好(playground):
func main() {
url := "http://restapi3.apiary.io/notes"
fmt.Println("URL:>", url)
var jsonStr = []byte(`{"title":"Buy cheese and bread for breakfast."}`)
req, err := http.NewRequest("POST", url, bytes.NewBuffer(jsonStr))
req.Header.Set("X-Custom-Header", "myvalue")
req.Header.Set("Content-Type", "application/json")
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
panic(err)
}
defer resp.Body.Close()
fmt.Println("response Status:", resp.Status)
fmt.Println("response Headers:", resp.Header)
body, _ := ioutil.ReadAll(resp.Body)
fmt.Println("response Body:", string(body))
}
使用实例post http或https请求
//Encode the data
postBody, _ := json.Marshal(map[string]string{
"name": "Test",
"email": "Test@Test.com",
})
responseBody := bytes.NewBuffer(postBody)
//Leverage Go's HTTP Post function to make request
resp, err := http.Post("https://postman-echo.com/post", "application/json", responseBody)
//Handle Error
if err != nil {
log.Fatalf("An Error Occured %v", err)
}
defer resp.Body.Close()
//Read the response body
body, err := ioutil.ReadAll(resp.Body)
if err != nil {
log.Fatalln(err)
}
sb := string(body)
log.Printf(sb)