What's your biggest current challenge? Have your say in Community Polls along the right column.
Our Partner & Developer boards on the community are moving to a brand new home: the .dev community forums! While you can still access past discussions here, for all your future app and storefront building questions, head over to the new forums.

nextjs

nextjs

nasi1234
Visitor
1 0 0

How can I import a specific product from shopify in my nextjs application?

Reply 1 (1)

Liam
Community Manager
3108 344 895

Hi Nasi1234,

 

To import a specific product from your Shopify store into a Next.js application, you would typically use the Shopify Storefront API, which allows you to fetch data about your store's products, collections, and more.

The general steps would involve:

1. Setting up Shopify Storefront API access: Create an app in your Shopify admin to get your Storefront access token. Make sure you've granted permissions to access product and collection data.

2. Installing required packages: Next you'll need a way to fetch data from the API in your Next.js app. The `isomorphic-unfetch` or `axios` package can be used for this. 

3. Fetching product data: With the setup complete, you can now fetch data about a specific product. You'll need to use GraphQL queries with the Storefront API. Here's an example:

```
import fetch from 'isomorphic-unfetch';

// Shopify GraphQL endpoint
const API_URL = 'https://your-shop-name.myshopify.com/api/2023-04/graphql.json';
const STOREFRONT_TOKEN = 'your-storefront-access-token';

// Function to fetch data
async function getProduct(handle) {
const query = `
{
productByHandle(handle: "${handle}") {
id
handle
title
description
images(first: 1) {
edges {
node {
originalSrc
}
}
}
}
}
`;

const res = await fetch(API_URL, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'X-Shopify-Storefront-Access-Token': STOREFRONT_TOKEN,
},
body: JSON.stringify({ query }),
});

const { data } = await res.json();
return data.productByHandle;
}

// Usage in a Next.js page or component
export default function ProductPage() {
const [product, setProduct] = React.useState(null);

React.useEffect(() => {
getProduct('your-product-handle')
.then(data => setProduct(data))
.catch(err => console.error(err));
}, []);

if (!product) return <div>Loading...</div>;

return (
<div>
<h1>{product.title}</h1>
<img src={product.images.edges[0].node.originalSrc} alt={product.title} />
<p>{product.description}</p>
</div>
);
}
```

In this example, replace `your-shop-name` with your actual Shopify shop name and `your-storefront-access-token` with the Storefront access token you generated. Also, replace `'your-product-handle'` with the handle of the product you want to fetch.

 

This will display the product's title, an image, and the description on the page. Note that you should replace the placeholders with your actual data and handle any errors or edge cases according to your specific requirements.

 

Please note, it's not recommended to expose your Storefront Access Token in the client-side code in a production environment, because it may lead to security risks. Make sure to securely handle all sensitive keys and tokens. You might want to use environment variables or server-side functions to securely store and use your access tokens.

 

Hope this helps!

Liam | Developer Advocate @ Shopify 
 - Was my reply helpful? Click Like to let me know! 
 - Was your question answered? Mark it as an Accepted Solution
 - To learn more visit Shopify.dev or the Shopify Web Design and Development Blog