0

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,
        },
    } 
}
juliomalves
  • 42,130
  • 20
  • 150
  • 146

0 Answers0