gpt4 book ai didi

go - 使用 http 客户端通过 graphql 传递变量

转载 作者:IT王子 更新时间:2023-10-29 01:50:36 25 4
gpt4 key购买 nike

我正在尝试与 golang 中的 shopify 店面 API 交互。但这是我第一次接触 graphql,我有点困惑。

我需要为请求传递变量,并做了一些研究,得出的结论是我可以传递如下所示的变量。但是 shopify 不断返回此错误:

{"errors":[{"message":"Parse error on \"variables\" (IDENTIFIER) at [13, 3]","locations":[{"line":13,"column":3}]}]}

这是我当前的代码:

body := strings.NewReader(fmt.Sprintf(`
mutation ($checkoutId: ID!, $lineItems: [CheckoutLineItemInput!]!) {
checkoutLineItemsAdd(checkoutId: $checkoutId, lineItems: $lineItems) {
userErrors {
message
field
}
checkout {
id
}
}
}
variables: { "lineItems": [ { "quantity": 1, "variantId": "%s" } ], "checkoutId": "%s" }
`, productID, checkoutID))

req, err := http.NewRequest("POST", "https://myshop.myshopify.com/api/graphql", body)
if err != nil {
// handle err
fmt.Println(err)
}
req.Header.Set("Content-Type", "application/graphql")
req.Header.Set("X-Shopify-Storefront-Access-Token", "mytoken")

resp, err := http.DefaultClient.Do(req)
if err != nil {
// handle err
fmt.Println(err)
}
defer resp.Body.Close()

data, err := ioutil.ReadAll(resp.Body)
if err != nil {
// handle err
fmt.Println(err)
}

我的问题是,在使用 application/graphql 时传递变量的正确方法是什么?


使用@DanielRearden 的回答更新代码后,我现在收到此错误:

{"errors":[{"message":"Variable checkoutId of type ID! was provided invalid value","locations":[{"line":1,"column":11}],"extensions":{"value":null,"problems":[{"path":[],"explanation":"Expected value to not be null"}]}},{"message":"Variable lineItems of type [CheckoutLineItemInput!]! was provided invalid value","locations":[{"line":1,"column":29}],"extensions":{"value":null,"problems":[{"path":[],"explanation":"Expected value to not be null"}]}}]}

更新代码:

    body := strings.NewReader(fmt.Sprintf(`{
"query": "mutation ($checkoutId: ID!, $lineItems: [CheckoutLineItemInput!]!) { checkoutLineItemsAdd(checkoutId: $checkoutId, lineItems: $lineItems) { userErrors { message field } checkout { id } }}",
"variables": {
"$lineItems": [
{ "quantity": 1, "variantId": "%s" }
],
"$checkoutId": "%s"
}
}`, productID, checkoutID))
...
...
req.Header.Set("Content-Type", "application/json")

如下所示删除变量上的 $ 标记会返回另一个错误:

{
"query": "mutation ($checkoutId: ID!, $lineItems: [CheckoutLineItemInput!]!) { checkoutLineItemsAdd(checkoutId: $checkoutId, lineItems: $lineItems) { userErrors { message field } checkout { id } }}",
"variables": {
"checkoutId": "%s",
"lineItems": [
{ "quantity": 1, "variantId": "%s" }
]
}
}

错误是:(状态 500)

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="referrer" content="never" />
<title>Something went wrong</title>

但我想这不再是 graphql 问题,而是更多的 shopify api 问题。

最佳答案

当您将 Content Type 设置为 application/graphql 时,您不能使用变量,因为整个请求主体被视为单个 GraphQL 文档。变量不能包含在 GraphQL 文档中——它们必须单独提交。您应该使用 application/json 作为内容类型,而不是使用 application/graphql。然后,您的请求正文应该是一个带有两个键的 JSON 字符串——queryvariables:

{
"query": "mutation ($checkoutId: ID!, $lineItems: [CheckoutLineItemInput!]!) {...}",
"variables": {
"checkoutId" "",
"lineItems": [
...
]
}
}

关于go - 使用 http 客户端通过 graphql 传递变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55564703/

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