I'm trying out meteor oauth using google-accounts. I'm seeing it working fine locally, but when I deploy ( using this process http://bit.ly/1Hrp7Oz ), no oauth popup appears and I see this error: Uncaught TypeError: Cannot read property '1' of null which is occurring at line 3 packages/url/url_client.js
URL._constructUrl = function (url, query, params) { var query_match = /^(.*?)(\?.*)?$/.exec(url); Url(query_match[1], query_match[2], query, params); // 3 };
Not sure how to debug this