educative.io

Educative

Server Side Integration

is the concept of server side integration similar or the same as server side rendering, if not, how do they differ

Hi Abdullateef!
In Server Side Integration(SSI), the server interacts with an API gateway, pass the details of the page request and asking for relevant personalization experiences. The response is typically a JSON payload. It is then the caller’s responsibility to parse the response and act on it.
Whereas in the Server Side Rendering (SSR), the HTML files on the server are converted into a fully rendered HTML page for the client. The web browser submits a request for information from the server which instantly responds by sending a fully rendered page to the client. It addresses the performance and search engine optimization issues of single-page JavaScript applications.
Hope it will clear your confusion. If you still have any queries, please let us know.
Thank you!

1 Like

thank you