-
Notifications
You must be signed in to change notification settings - Fork 116
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Valid store domain must be provided issue - Storefront API Client #1508
Comments
Hi @baturalposma, What is the shop's domain you're trying to connect to? I used the following script and were able to get the products list . import { createStorefrontApiClient } from '@shopify/storefront-api-client';
const client = createStorefrontApiClient({
storeDomain: 'http://<shop>.myshopify.com',
apiVersion: '2024-07',
publicAccessToken: '<access-token>'
});
export const fetchCollectionByHandle = async (handle) => {
const query = `
query {
collectionByHandle(handle: "${handle}") {
id
title
products(first: 10) {
edges {
node {
id
title
description
images(first: 1) {
edges {
node {
url
}
}
}
}
}
}
}
}
`;
try {
const response = await client.request(query);
const products = response.data.collectionByHandle.products.edges;
if (!products || products.length === 0) {
throw new Error('No products found in this collection.');
}
return products;
} catch (error) {
console.error('Error fetching products by collection handle:', error);
return [];
}
};
const products = await fetchCollectionByHandle("snowboard");
console.log(products); |
Hi @sle-c here is my shopify domain: eson-direct.myshopify.com thanks for taking a look. |
Exact same issue here. Any updates on the solutions? |
Hey @DaniEspi , were you able to resolve the issue? |
Hi folks 👋 In the original scenario this was caused because the above code was running in a React Native application. It was resolved for now by adding the react-native-url-polyfill to the application. I am going to close this ticket. If you are seeing a similar error and not in a React Native application please create a new ticket with the details providing code for reproduction. |
Hi everyone,
Even though I entered the storeDomain and publicAccessToken values correctly and the Shopify support team verified that these values were correct,
I am encountering the error Storefront API Client: a valid store domain must be provided.
Has anyone encountered this problem before? In the application I created, all permissions in the Storefront API access scopes section have been granted.
Can someone with knowledge on this subject help?
Here is my code:
Thanks,
The text was updated successfully, but these errors were encountered: