I'm still not able to get this working. Here is what I have.
restify 2.1.1
// server.js
...
server.use(restify.acceptParser(server.acceptable));
server.use(restify.queryParser());
server.use(restify.bodyParser());
server.use(restify.authorizationParser());
//server.use(authenticate);
server.use(restify.CORS());
server.use(restify.fullResponse());
...
--
You received this message because you are subscribed to the Google Groups "restify" group.
To unsubscribe from this group and stop receiving emails from it, send an email to restify+u...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
--
--
--
really strange, I updated some code and my experiences on the gist - https://gist.github.com/mcavage/4731960
--