I need to authenticate a user using Yammer before posting comments from my ionic 2 app. i am using yammer js sdk for this. its working in browser fine. its opening login popup and closing. when i try running the same in mobile its opening the inappbrowser and showing about:blank at the bottom. not redirecting from there.
i am calling the sdk this way:
yam.platform.login((loginResp)=>{
console.log("loginResp:"+JSON.stringify(loginResp));
});
i have included the js sdk this way:
<script data-app-id="appid" src="external/yammer_js_sdk.js"></script>
because of the above login call its opening the inappbrowser but stuck there. can somebody help me?