We have a demo SSE server-side app that deployed to the App Platform, yet the client CAN NOT connect to it (Chrome F12 shows “pending” always).
While for other normal endpoints of the same component, it’s OK.
Then we deployed this same code to a droplet, and everything is fine…Connecting to the SSE endpoint will get an HTTP 200.
This is weird, and we don’t know how to handle this trouble.
Any thoughts? Thank you!
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.
Hey @aaronanemone,
Indeed, the DigitalOcean App Platform may not be well-suited to handle SSE as it is designed to run stateless applications, and SSE relies on maintaining a persistent connection between the server and the client.
As you mentioned, deploying the same code to a Droplet works fine. This suggests that the issue is indeed related to the App Platform’s handling of SSE connections.
Another suggestion here would be to use WebSockets for instead of SSE:
https://docs.digitalocean.com/tutorials/app-deploy-websockets/
If you still want to use SSE with App Platform, the best thing to do to get your voice heard regarding this would be to head over to our Product Ideas board and post a new idea, including as much information as possible for what you’d like to see implemented.
Hope that helps!
- Bobby.
Changing my endpoints to accept POST and changing my server response headers as below seems to be working for me for now!
‘Content-Type’: ‘text/event-stream’, ‘Connection’: ‘keep-alive’, ‘Cache-Control’: ‘no-cache’, ‘X-Accel-Buffering’: ‘no’
Same here. Tried implementing SEE with GET requests and didnt’ work. Oddly enough you can make it work with POST requests. No idea why though. If someone knows. Please enlighten me.