1 Answer
- Newest
- Most votes
- Most comments
0
Hi,
You are probably facing a CORS (Cross Origin Resource Sharing) issue since you loads from an S3 website as origin and try to access a url in another external domain. Such issues don't show up in local dev usually: they emerge when you load your to the hosting site (S3 here)
You have to adapt your Angular configuration to support CORS. I'd suggest to read this to do so: https://www.stackhawk.com/blog/angular-cors-guide-examples-and-how-to-enable-it/
Best,
Didier
Relevant content
- asked a month ago
- asked 2 years ago
- asked 2 years ago

Thanks for your help and your time but, as said, locally the Angular application works perfectly and that error has nothing to do with the CORS of Angular - the CORS is already implemented at Angular level. Have you some other idea?
PS: I add another detail in the original question, also with the way I implemented the CORS in my Angular application.