req, err := http.NewRequest("GET", "https://api.github.com/repos/octocat/Hello-World/pulls/1347", nil)
req.Header.Set("Accept", "application/vnd.github.v3.patch")
if err != nil {
check(err)
}
body, err := ioutil.ReadAll(req.Body)
ctxt.JSON(http.StatusOK, body)
在这里,我需要从 github api 的主体发送 api 响应。但在这里我收到以下错误:
“运行时错误:无效的内存地址或 nil 指针取消引用”
有只小跳蛙
慕少森
相关分类