朋友们,我按照说明在我的应用上添加了一个登录Twitter按钮,但是我收到了错误。
我通过按钮获得了活动,但是当我按下按钮返回时,我没有收到请求代码。
首先,我在GitHub中关注了sociallogin
帮助器,但应用程序给了我一个na error
。我读到了这段代码,并在我的应用程序中添加了以下内容:
TwitterAuthConfig authConfig = new TwitterAuthConfig("twitter api", "api secret");
Fabric.with(this, new Twitter(authConfig));
但现在我无法获取登录请求代码。
这部分代码:
TwitterAuthConfig authConfig = new TwitterAuthConfig("[KEY]", "[SECRET]");
Fabric.with(this, new Twitter(authConfig));
iniciate();
iniciate
方法有:
tn_twitter = (Button) findViewById(R.id.btn_twitter);
twitterHelper = new TwitterHelper(this,MainActivity.this,"api code","secret code");
btn_twitter.setOnClickListener(this);
我的错误是什么? GitHub脚本没有Fabric
代码,但现在应用程序显示在屏幕上,但没有返回到取消登录userId
。