我正在尝试从 Shopify 商店获取第二语言的产品。
Storefront API 声明 HTTP 请求标头必须包含 Accept-Language: de,在我的情况下(在 React 中),设置应如下所示: https ://shopify.dev/tutorials/manage-app-translations-with- admin-api#storefront-api-translation-header
const clientWithTranslatedContent = Client.buildClient({
domain: 'your-shop-name.myshopify.com',
storefrontAccessToken: 'your-storefront-access-token',
language: 'de' // Accept-Language
});
你可以在这里找到它的工作原理: https ://github.com/Shopify/js-buy-sdk/blob/update-language-setting/src/client.js
我正在使用 Shopify Webhook API 版本 2020-07(最新)。在这里gatsbyjs/gatsby#24173(评论)我发现在版本 2020-04 Accept-Language 标头中支持翻译的信息,但在我的情况下不起作用。
在构建应用程序时,我总是收到带有默认翻译 (EN) 的商品。