Parse.com Authentication error: Unable to respond to any of these challenges: {oauth=www-authenticate: OAuth realm="https://api.twitter.com"}
android, authentication, parse-platform, twitter
Solution
Resolved this problem by specifying `http://www.localhost.com/callback` for Callback URL and `http://www.localhost.com` for a website in the Twitter application settings.
Problem
After upgrading Parse Android SDK to version 1.4.1 Twitter login stopped to work. When I'm trying to login with 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 } } }); ``` I'm getting the error: ``` Authentication error: Unable to respond to any of these challenges: {oauth=www-authenticate: OAuth realm="https://api.twitter.com"} ``` I've already asked a question on Parse.com but maybe you guys know what is the problem. Thanks in advance.