I deployed an app to my client, the app isnt load for him, but works fine in development phase, the app is loading the scripts all day long, and dont resolve anything, how could i solve this?
what information i need to show, that could help to understand better the issue?
im new to the deployment phase of this process, im almost blind in this, could someone help me see some path that i can follow?
the information that i could give is this:
the client in question is my friend, and need a solution fast, dont need to be beauty, and she knows that im new to this solution, so this is the first step that shopify guide show, and is the sample that count every product within the store, and replace the ‘-’, and then you can create new 5 prods.
if this is loading, the button is locked.
Hi @Censoretti
I would recommend starting by using an HTTP client like Postman or Insomnia to try replicating the behaviour.
If you can replicate the same issue please share the details of the specific API request you are making.
If the problem only persists in your in your friend’s instance of the app, then it may not be related to the Shopify API, and could be an issue with the deployment’s environment. In that case, I would recommend reviewing the hosting platform’s documentation, and the environment variables to start troubleshooting.
Cheers,
sorry for reply so late, i solved the issue puting this piece of code
res.setHeader('Access-Control-Allow-Origin', '*');
res.setHeader('Access-Control-Allow-Methods', '*');
res.setHeader('Access-Control-Allow-Headers', '*');
next();
});```
so its solved now