web-dev-qa-db-ja.com

Android Volley POST本文の文字列

Volleyライブラリを使用してRESTful APIと通信しようとしています。

POSTベアラートークンを要求する場合、本文に文字列を指定する必要があります。文字列は次のようになります:grant_type = password&username = Alice&password = password123 And header:Content-Type:application/x-www-form-urlencoded

WebApi個別アカウントの詳細: http://www.asp.net/web-api/overview/security/individual-accounts-in-web-api

残念ながら、どうすれば解決できるのかわかりません。

私はこのようなものを試しています:

StringRequest req = new StringRequest(Request.Method.POST, URL, new Response.Listener<String>() {
                    @Override
                    public void onResponse(String response) {
                        VolleyLog.v("Response:%n %s", response);
                    }
                }, new Response.ErrorListener() {
                    @Override
                    public void onErrorResponse(VolleyError error) {
                        VolleyLog.e("Error: ", error.getMessage());
                    }
                }){
                    @Override
                    protected Map<String, String> getParams() throws AuthFailureError {
                        Map<String, String> params = new HashMap<String, String>();
                        params.put("grant_type", "password");
                        params.put("username", "User0");
                        params.put("password", "Password0");
                        return params;
                    }

                    @Override
                    public Map<String, String> getHeaders() throws AuthFailureError {
                        Map<String, String> headers = new HashMap<String, String>();
                        headers.put("Content-Type", "application/x-www-form-urlencoded");
                        return headers;
                    }
                };

常に400のBad Requestを受け取っています。私は実際に次のようなリクエストを送信していると思います:

grant_type:password, username:User0, password:Password0

の代わりに:

grant_type=password&username=Alice&password=password123

何かアイデアやアドバイスがありましたら、よろしくお願いします。

13
Sandak

まず、ログに出力するか、wiresharkやfiddlerなどのネットワークスニファを使用して、送信内容を正確に確認することをお勧めします。

本体にパラメータを配置しようとするとどうでしょうか?それでもStringRequestが必要な場合は、それを拡張してgetBody()メソッドをオーバーライドする必要があります(JsonObjectRequestと同様)

7
Itai Hanski

ユーザー名やパスワードなどのパラメーターを使用して通常のPOSTリクエスト(JSONなし)を送信するには、通常 getParams() をオーバーライドしてパラメーターのマップを渡します。

public void HttpPOSTRequestWithParameters() {
    RequestQueue queue = Volley.newRequestQueue(this);
    String url = "http://www.somewebsite.com/login.asp";
    StringRequest postRequest = new StringRequest(Request.Method.POST, url, 
        new Response.Listener<String>() 
        {
            @Override
            public void onResponse(String response) {
                Log.d("Response", response);
            }
        }, 
        new Response.ErrorListener() 
        {
            @Override
            public void onErrorResponse(VolleyError error) {
                Log.d("ERROR","error => "+error.toString());
            }
        }
            ) {     
        // this is the relevant method
        @Override
        protected Map<String, String> getParams() 
        {  
            Map<String, String>  params = new HashMap<String, String>();
            params.put("grant_type", "password"); 
            // volley will escape this for you 
            params.put("randomFieldFilledWithAwkwardCharacters", "{{%stuffToBe Escaped/");
            params.put("username", "Alice");  
            params.put("password", "password123");

            return params;
        }
    };
    queue.add(postRequest);
}

そして、任意の文字列をPOST Volley StringRequestの本文データとして送信するには、 getBody() をオーバーライドします

public void HttpPOSTRequestWithArbitaryStringBody() {
    RequestQueue queue = Volley.newRequestQueue(this);
    String url = "http://www.somewebsite.com/login.asp";
    StringRequest postRequest = new StringRequest(Request.Method.POST, url, 
        new Response.Listener<String>() 
        {
            @Override
            public void onResponse(String response) {
                Log.d("Response", response);
            }
        }, 
        new Response.ErrorListener() 
        {
            @Override
            public void onErrorResponse(VolleyError error) {
                Log.d("ERROR","error => "+error.toString());
            }
        }
            ) {  
         // this is the relevant method   
        @Override
        public byte[] getBody() throws AuthFailureError {
            String httpPostBody="grant_type=password&username=Alice&password=password123";
            // usually you'd have a field with some values you'd want to escape, you need to do it yourself if overriding getBody. here's how you do it 
            try {
                httpPostBody=httpPostBody+"&randomFieldFilledWithAwkwardCharacters="+URLEncoder.encode("{{%stuffToBe Escaped/","UTF-8");
            } catch (UnsupportedEncodingException exception) {
                Log.e("ERROR", "exception", exception);
                // return null and don't pass any POST string if you encounter encoding error
                return null;
            }
            return httpPostBody.getBytes();
        }
    };
    queue.add(postRequest);
}

余談ですが、Volleyのドキュメントは存在せず、StackOverflowの回答の質はかなり悪いです。このような例の答えは、まだここにはありませんでした。

27
georgiecasey

私はこれが古いことを知っていますが、私はこれと同じ問題に遭遇し、ここにimoのはるかに明確な解決策があります: 文字列の本文でボレーを使用してPOSTリクエストを送信する方法?

3
Ryan Newsom