Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Welcome to Software Development on Codidact!

Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.

Post History

75%
+4 −0
Q&A Using http.get to get page from frontend

To start, Angular is a Single-Page Application (SPA) framework. This means your whole "site" is served from a single web page. Any apparent navigation within that site is just (Angular's) JavaScrip...

posted 2y ago by Derek Elkins‭

Answer
#1: Initial revision by user avatar Derek Elkins‭ · 2021-09-04T03:11:06Z (over 2 years ago)
To start, Angular is a Single-Page Application (SPA) framework. This means your whole "site" is served from a single web page. Any apparent navigation within that site is just (Angular's) JavaScript rewriting the DOM.

Back in the day, when SPAs were new, you'd see URLs like `http://example.com/#ping`. The reason for that is the fragment part of the URL, i.e. everything after the `#`, specifies a location *within* a page and not a separate page. This is used for anchors within pages, e.g. having a table of contents and when you click on an item in that table it simply scrolls you to the appropriate anchor. Importantly here, it does *not* refetch the page. Early SPAs exploited this by only updating the fragment part of the URL when mimicking navigation, as that wouldn't trigger a page refresh. Also, when the SPA first loaded it could look at the URL fragment to see what "page" the user wanted to go to.

With the addition of the History API, SPAs could change the whole apparent URL without triggering a reload and still have the back button and such work. You could have `http://example.com/ping` instead of `http://example.com/#ping`. But now we have a problem. A URL like `http://example/ping` means to load the HTML page at that location, not load the HTML page at `http://example.com/` as `http://example.com/#ping` does. If you don't have control of the server, there's not really much you can do about this, and you'd need to stick to using fragments. If you *do* have control of the server, then the solution is simple. Simply return the same HTML for every URL (or every URL under a certain path). This is effectively what `ng serve` does.

Okay, so why are you getting 404 errors and not the SPA's HTML? Well, `ng serve` checks the `Accept` header for `text/html` and if it finds it, it will do what I said. If it doesn't, then it behaves like a normal server. You can try this using `curl` or a similar tool. `curl http://localhost:4200/ping` will give you a 404, but setting the `Accept` header to `text/html` via `curl -H 'Accept: text/html' http://localhost:4200/ping` will return the same HTML as `curl http://localhost:4200`.

You can do the same thing by setting the headers in the `fetch` JavaScript API call and see the same result. That said, this isn't particularly useful. You won't get `PING` as the result, you'll get the HTML for the whole app.

Ultimately, I don't think what you're trying to do is actually a good or effective way for having an Angular app interact with Keycloak. I haven't used Keycloak, but it looks like there are several guides on using Angular with Keycloak and those will probably have better advice.