ok guy
ok guy
Hey guys found the root cause, [node-inspector does not work on v8.x](https://github.com/node-inspector/node-inspector/issues/1013). The only workaround atm is to downgrade to v7.x
hey @edjiang, Thanks for the fast response, I tried that initially, but it was giving me back an invalid request. ``` POST /oauth/token HTTP/1.1 Host: localhost:3000 Content-Type: application/x-www-form-urlencoded Cache-Control: no-cache...
Figured it out. It works if it's json instead of x-www-form-urlencoded: ``` POST /oauth/token HTTP/1.1 Host: localhost:3000 Content-Type: application/json Accept: application/json Cache-Control: no-cache { "grant_type" : "password", "username" : "[email protected]",...