Android Tumblr Oauth-signpost 401
问题 Okay, so, I am making a Tumblr client for Android, I've been trying and failing to get OAuth working for about a week now. Here's how its going: User fires up the app. Main activity's onCreate does this: settings = getSharedPreferences(PREFS_NAME, 0); authToken=settings.getString("OauthToken", "none"); authTokenSecret=settings.getString("OauthSecret", "none"); if(authToken=="none" || authTokenSecret=="none"){ Intent i = new Intent(getApplicationContext(),Authentication.class); startActivity(i