If we're using Firebase hosting, how would we access someone's API without server-side scripts like php?
Firebase Hosting - Accessing API's?
517 Views Asked by Jus10 At
2
There are 2 best solutions below
0

Firebase hosting only hosts static files. So in order to call external api, you've to do it from JavaScript using fetch/axios or something like that. However, if the api endpoint hasn't enabled CORS for your domain, your browser doesn't allow to make that request for security.
I ended up figuring out how to do it using php.