Hi I am using the following code in my Ionic 3 app: ` this.tw.login().then((res) => { console.log('Logged into Twitter!', res); this.tw.showUser().then((profile) => { //do stuff }, (error) => { //if I check error here, it is returning the user profile object }); }, ... ` Is anyone else having this issue? Any idea how to fix it? Thanks!