Socialauth-android获取oAuth-token并在设备上使用帐户信息

前端之家收集整理的这篇文章主要介绍了Socialauth-android获取oAuth-token并在设备上使用帐户信息前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用socialauth- android库来记录Facebook,Twitter和LinkedIn的用户.

到目前为止,我找不到一种方法获取oAuth令牌.有没有办法访问它,而不需要重新实现图书馆的部分?

此外,当我想使用socialauth登录(请参阅下面的代码),我必须手动输入用户名和密码,尽管我已经设置了所有帐户.你能告诉socialauth来使用这个帐号吗?

buttonFacebook.setOnClickListener(new OnClickListener() {
        @Override
        public void onClick(View v) {
            mSocialAdapter.authorize(ActivityLogin.this,Provider.FACEBOOK);
        }
    });

解决方法

我找到了获得令牌的方式
String token = mSocialAdapter.getCurrentProvider().getAccessGrant().getKey();
原文链接:https://www.f2er.com/android/311609.html

猜你在找的Android相关文章