在我正在开发的 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
}
}
}
}
}
}
}
为什么会失败,我该如何解决?