首頁  >  文章  >  後端開發  >  如何使用 go 套件設定標頭鍵和值:shurcooL/graphql 或 hasura/go-graphql-client?

如何使用 go 套件設定標頭鍵和值:shurcooL/graphql 或 hasura/go-graphql-client?

WBOY
WBOY轉載
2024-02-05 22:36:11790瀏覽

如何使用 go 包设置标头键和值:shurcooL/graphql 或 hasura/go-graphql-client?

問題內容

所以我想使用shurcool 或hasura go 客戶端(Go 套件)透過Go 從Graphql 伺服器查詢數據,但數據伺服器需要像“x-hasura-admin-secret”鍵和值包含在請求標頭中.

兩個套件文件中都沒有提到如何執行此操作(設定標頭鍵和值),僅提到如何設定存取權杖。


正確答案


https://www.php.cn/link/b93f552915e01e40fb9b66d6fd114f7b 提供的客戶端 有一個#fb#withrequestmodifier 方法。您可以新增一個請求標頭,如下所示:

import (
    "net/http"
    graphql "github.com/hasura/go-graphql-client"
)

func gqlinit() {
    client := graphql.newclient("your graphql url here", nil)
    client = client.withrequestmodifier(func(r *http.request) {
        r.header.set("x-hasura-admin-secret", "secret")
    })
}

查看

https://www.php.cn/link/3a5f9129110203548b21c0e40e9cd7af和相關的github lib,看起來他們希望你傳遞一個*http.client 來為你加上標頭,你可以這樣做:

import (
    "net/http"
    graphql "github.com/shurcooL/graphql"
)

type hasuraAuthTransport struct {
    secret string
}

func (h hasuraAuthTransport) RoundTrip(req *http.Request) (resp *http.Response, err error) {
    req.Header.Set("x-hasura-admin-secret", h.secret)
    return http.DefaultTransport.RoundTrip(req)
}

func gqlInit() {
    client := graphql.NewClient("your graphql url here", &http.Client{
        Transport: hasuraAuthTransport{secret: "secret"},
    })
}

以上是如何使用 go 套件設定標頭鍵和值:shurcooL/graphql 或 hasura/go-graphql-client?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:stackoverflow.com。如有侵權,請聯絡admin@php.cn刪除