Here you can easily test pushing data to browsers with Fastly Pub/Sub. This page connects to the service using the JavaScript EventSource API.
Initializing...
This page is subscribed to the topic "2759fa48", and will display the results below:
Open this page in a separate window to see how pushing from either window will cause both windows to receive the message.
This page is using the following JavaScript to subscribe to events:
const token = "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6IjRkYWFiMDA3In0.eyJ4LWZhc3RseS1yZWFkIjpbIjI3NTlmYTQ4Il0sIngtZmFzdGx5LXdyaXRlIjpbIjI3NTlmYTQ4Il0sImlhdCI6MTc1MTMyMjU2MSwiZXhwIjoxNzUxMzI2MTYxfQ.I8TnRjPBJkm5jKnaH6AS7JVtrqSMNqafkUD4QzabeEs"; const es = new EventSource('https://pubsub-test.edgecompute.app/events?topic=2759fa48&auth=' + token); es.addEventListener('message', function (event) { $('#output').text(event.data); }, false);
And here's a curl command that you can use to publish on your own. It contains an authentication token that lasts for 1 hour:
curl -H "Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6IjRkYWFiMDA3In0.eyJ4LWZhc3RseS1yZWFkIjpbIjI3NTlmYTQ4Il0sIngtZmFzdGx5LXdyaXRlIjpbIjI3NTlmYTQ4Il0sImlhdCI6MTc1MTMyMjU2MSwiZXhwIjoxNzUxMzI2MTYxfQ.I8TnRjPBJkm5jKnaH6AS7JVtrqSMNqafkUD4QzabeEs" -d "hello world" "https://pubsub-test.edgecompute.app/events?topic=2759fa48"