Android LinkedIn Integration Error on Device And Emulator

前端 未结 2 565
花落未央
花落未央 2021-01-20 10:10

I am trying to integrated linkedIn using this question answer Posting LinkedIn message from Android application but this given example LITest in not working on Device is Sh

2条回答
  •  不要未来只要你来
    2021-01-20 10:46

    First Try to clear cookies before you init LinkedIn related object... Use Below Code

    CookieSyncManager.createInstance(this);
    
    CookieManager cookieManager = CookieManager.getInstance();
    cookieManager.removeAllCookie();   
    

    Please update me if it works or not....

提交回复
热议问题