I’m having trouble with figuring out how to access my express api. On my local development machine I had no trouble accessing it with axios requests for example:
axios
.get(`http://localhost:3000/pollPage/fetchMovie/${query}`)
.then((response) => {
however now that my app is deployed these requests do not work anymore they give me 404 errors. what should I change these requests to so that my app is able to function again? If you want to know how my application is setup here is the github link: https://github.com/jak6jak/movie-polling
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Sign up for Infrastructure as a Newsletter.
Working on improving health and education, reducing inequality, and spurring economic growth? We'd like to help.
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Hi there @jak6jak,
What you could do is set up a base URL
Then you could use the DigitalOcean App env variables to pass the APP_URL to your application:
https://www.digitalocean.com/docs/app-platform/how-to/use-environment-variables/
In your local environment, you can set the APP_URL to
http://localhost:3000
.Let me know how it goes! Regards, Bobby