My macro is called from a url containing parameters like:
?title=TitleHere¯o.id=a1
I'm finding it easy to pick up the title, but I am getting an error when trying to get the macro.id parameter as follows.
var requestTitle = req.query.title;
var requestMacroId = req.query.macro.id;
What is the correct way to get a parameter with a period in the name?