【发布时间】:2014-04-29 06:11:25
【问题描述】:
将 Parse Android SDK 升级到 1.4.1 版后,Twitter 登录停止工作。当我尝试使用 Twitter 登录时:
ParseTwitterUtils.initialize(Constants.TWITTER_CONSUMER_KEY, Constants.TWITTER_CONSUMER_SECRET);
ParseTwitterUtils.logIn(activity, new LogInCallback() {
@Override
public void done(ParseUser parseUser, ParseException e) {
if (e == null) {
// Success
} else {
// Error
}
}
});
我收到了错误:
Authentication error: Unable to respond to any of these challenges: {oauth=www-authenticate: OAuth realm="https://api.twitter.com"}
我已经在Parse.com 上问过一个问题,但也许你们知道问题出在哪里。 提前致谢。
【问题讨论】:
标签: android authentication twitter parse-platform