我编写了一个简单的 go 代码,它向 API 发送 GET 请求,作为响应我收到 401 错误。但是,当我使用 cURL 时,我收到了所需的响应。我还使用API Tester获得了预期的响应。所以,我相信,我的代码一定有问题,而且我无法找出来。
下面是我的 Go 代码,它以 401 错误响应
func main() {
clusterId := os.Getenv("CLUSTER_ID")
apiUrl := "https://api.qubole.com/api/v1.3/clusters/"+clusterId+"/state"
auth_token := os.Getenv("X_AUTH_TOKEN")
fmt.Println("URL - ",apiUrl)
req, err := http.NewRequest("GET", apiUrl, nil)
if(err != nil){
fmt.Println("ERROR in getting rest response",err)
}
req.Header.Set("X-Auth-Token", auth_token)
req.Header.Set("Content-Type", "application/json")
req.Header.Set("Accept", "application/json")
res, err := http.DefaultClient.Do(req)
if(err != nil){
fmt.Println("Error: No response received", err)
}
defer res.Body.Close()
//print raw response body for debugging purposes
body, _ := ioutil.ReadAll(res.Body)
fmt.Println(string(body))
}
我得到的响应/错误的摘录如下:
URL - https://api.qubole.com/api/v1.3/clusters/presto-bi/state
{"error":{"error_code":401,"error_message":"Invalid Token"}}
现在,以下是 cURL 命令,它返回我想要的响应
curl -X GET -H "X-AUTH-TOKEN:$X_AUTH_TOKEN" -H "Content-Type: application/json" -H "Accept: application/json" "https://us.qubole.com/api/v1.3/clusters/presto-bi/state"
下面是我收到的标准输出,这是预期的:{"state":"DOWN"}%
芜湖不芜
白板的微信
相关分类