Twitter auth error with NodeJS + Ionic

I am experiencing an error with twitter login inside an ionic App, this used to work sometime before stopping working without any changes. This is the error:

screenshot from 2015-08-05 18 58 57

Flow:

  1. The user hits the button for twitter auth
  2. On the server this error occurs: TypeError: Cannot read property 'oauth_token' of undefined in this line:

On the lines:

if (!req.body.oauth_token || !req.body.oauth_verifier){
  /* code */
}
  1. The flow stop with the windows show above.

This happens because satellizer make the request via GET instead POST to the server without any parameters and I don't know how to solve this.

Thank you very much.