在我正在开发的Shopify主题上,Chrome开发工具中的网络标签显示对/api/graphql
的请求返回状态码400和以下错误消息:
{"error":"Online Store channel is locked."}
此请求的有效负载为:
{
shop {
paymentSettings {
currencyCode
}
}
node(id: "Z2lkO....") {
... on ProductVariant {
requiresShipping
price
presentmentPrices(first: 25) {
edges {
node {
price {
amount
currencyCode
}
}
}
}
}
}
}
为什么会失败,我该如何解决?