猿问

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

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


墨色风雨
浏览 255回答 2
2回答

芜湖不芜

需要检查 golang 的 api 主机名并再次卷曲。谢谢!错误是因为,API 提供者的文档指出主机错误(API 文档)。但是,由于门户登录是 us.qubole.com(门户登录 URL),因此在编写 cURL 命令时考虑到了这一点。

白板的微信

我只是在没有足够信息的情况下在这里猜测。我假设clusterId := os.Getenv("CLUSTER_ID")是presto-bi。如果是这样,那么您只是在路径中缺少“集群”。apiUrl := "https://api.qubole.com/api/v1.3/clusters/"+clusterId+"/state"另外,你不应该使用us.qubole.com/api而不是吗api.qubole.com?
随时随地看视频慕课网APP

相关分类

Go
我要回答