To make the event_id work, here is the work around in the
mu.js found through a
link here.
Step 1) Hard code an event_id
Step 2) Disable ws
76 if(supportsWebsockets()) {
to
76 if(supportsWebsockets()) {
I'm no expert in JavaScript, I think here is the issue.
The example to pass event_id mentioned here:
9 }, { event_id: 1234 });
used in the code here:
Has never been used in the code.
57 mu.Stream = (function(config) {
58 var $ = jQuery;
60 wsUrl = config.wsUrl || url.replace(/^http/, 'ws'),
61 log = config.log || function(msg) { },
62 stopping = false,
63 error = config.error || function(msg) {
64 alert(msg);
65 },
Am I right?
Rahul
---------- Forwarded message ----------
From: Doug Tangren <
d...@meetup.com>
Date: Mar 27, 11:50 am
Subject: Just a basic question - How do you pass event ids in a
Streaming API
To: Meetup API