I'm making a GET endpoint that handles this variable in Node.js using Express:
?message-timestamp=2012-08-19+20%3A38%3A23
I'm having trouble accessing it using req.query. Accessing req.query.message-timestamp throws an error ("ReferenceError: timestamp is not defined"). Clearly the dash isn't playing nice.
Any obvious way around that?