0

リンクhttps://github.com/FredrikL/android-ttTumblrに記載されているコードを使用しました。このコードを使用すると、ユーザー名とパスワードを認証できません。次のコードは、tumblrの認証に使用しています。

HttpClient httpclient = new DefaultHttpClient();
        HttpPost httppost = new HttpPost(
                "http://www.tumblr.com/api/authenticate");

        try {
            System.out.println("user name : "+Username);
            System.out.println("password : "+Password);
            List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(2);
            nameValuePairs.add(new BasicNameValuePair("email", Username));
            nameValuePairs.add(new BasicNameValuePair("password", Password));

            httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));

            HttpResponse response = httpclient.execute(httppost);
            System.out.println("response value : "+ response.toString());
            System.out.println("response entity : "+response.getStatusLine().toString());
            System.out.println(response.getStatusLine().getStatusCode());
            if (response.getStatusLine().getStatusCode() != 200) {
                return false;
            }
            // Save our list of available blogs.
            SharedPreferences blogs = this.context.getSharedPreferences(BLOGS_PREFS,
                    0);
            Log.d("ttT", "attempting blog list extraction");
            saveBlogList(response, blogs);
            return true;

        } catch (ClientProtocolException e) {
            Log.d(TAG, "client proto exception", e);
        } catch (IOException e) {
            Log.d(TAG, "io exception", e);
        }
        return false;

このimでは、「response.getStatusLine()。getStatusCode()の値は404です」を取得しています。plz誰かが私がそれを認証するのを手伝ってくれます。

4

1 に答える 1

0

http://www.tumblr.com/api/authenticateは存在しません。したがって、HTTP404 を取得します。

これを見る

http://www.tumblr.com/docs/en/api/v2

于 2012-09-28T07:43:47.023 に答える