Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Amazon SNS: Notify browser client?

I have long running task and I would like to update the progress to the client running a desktop browser. I want to use Amazon SNS for this. However, I've yet to find any examples or guides on how to do this.

I am using python on my backend. As the process runs, I want to post to Amazon SNS, which will then fire back to the client.

like image 288
user299709 Avatar asked Jul 16 '26 11:07

user299709


1 Answers

deepstream.io is a nodejs server for publishing AWS SNS messages directly to the browser. It's mechanism is long-polling https and wss.

Link to their tutorial: Publishing AWS SNS messages to browsers

like image 58
Dale Navi Avatar answered Jul 18 '26 00:07

Dale Navi