gpt4 book ai didi

rest - 从 Go Code 使用 API 时出现 401 错误,而 cURL 运行良好

转载 作者:数据小太阳 更新时间:2023-10-29 03:32:29 26 4
gpt4 key购买 nike

我编写了一个简单的 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"}%

最佳答案

需要检查 golang 的 api 主机名并再次 curl 。谢谢!

错误是因为,API 提供者的文档指出主机错误 (API Documentation)。但是,由于门户登录是 us.qubole.com ( PORTAL Login URL ),因此在编写 cURL 命令时考虑到了这一点。

关于rest - 从 Go Code 使用 API 时出现 401 错误,而 cURL 运行良好,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53362236/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com