When I call this API from useEffect
it works but when I call from getStaticProps
I'm getting error Invalid header token
.
How can I solve it?
export async function getStaticProps(){
const response = await fetch('http://127.0.0.1:8000/api/shop')
const data = await response.json()
return {
props:{
users:data,
},
}
}