Проблема отправки параметров HTTPPost - PullRequest
1 голос
/ 26 июля 2011

В моем приложении. Я должен зарегистрировать нового пользователя, используя метод HTTPPost. Я пишу код ниже для этого. Но все время получаю ответ как ниже:

Код:

String Category_url = "url";
try
{
            SimpleDateFormat f = new SimpleDateFormat("E, dd MMM yyyy HH:mm:ss");
            f.setTimeZone(TimeZone.getTimeZone("UTC"));

            String signature_string = "POST"+"users/register/"+"global.se"+String.valueOf(f.format(new Date())+" +0000");
            Log.d("signature_string", signature_string);

            String auth_key = hmacSha1(signature_string, "1232132123213244353");
            Log.d("auth_key", auth_key);

            HttpClient client = new DefaultHttpClient();
            HttpPost get = new HttpPost(Category_url);


            List nvps = new ArrayList();
            nvps.add(new BasicNameValuePair("email", "mohit.kanada@gmail.com"));
            nvps.add(new BasicNameValuePair("password", "123456"));
            nvps.add(new BasicNameValuePair("first_name", "Mohit"));
            nvps.add(new BasicNameValuePair("last_name", "Kanada"));
            UrlEncodedFormEntity p_entity = new UrlEncodedFormEntity(nvps,HTTP.UTF_8);
            get.setEntity(p_entity);




            get.addHeader("Host", "HOST_name");
            get.addHeader("X-SE-Date", String.valueOf(f.format(new Date()))+" +0000");
            get.addHeader("X-SE-Client", "client_name");
            get.addHeader("X-SE-Accept", "xml");
            get.addHeader("X-SE-Auth", auth_key);

            HttpResponse httpresponse = client.execute(get);
            HttpEntity httpentity = httpresponse.getEntity();
            String s = EntityUtils.toString(httpentity);
            Log.d("login response", s);
        }
        catch (Exception e)
        {
        }

Ответ:

<?xml version="1.0" encoding="UTF-8"?>
<error>
<code>InvalidParameter</code>
<message>Invalid parameter specified (email)</message>
</error>
</xml>

Если я не передаю какой-либо параметр, то также получаю такой же ответ. Используя эти параметры, я могу зарегистрировать нового пользователя онлайн с помощью браузера.

Я думаю, что веб-сервер не может получить мои параметры , поскольку любое изменение имени параметра не может повлиять на ответ.

1 Ответ

0 голосов
/ 15 июля 2012

Используемая библиотека: http://loopj.com/android-async-http/

private OnClickListener login = new OnClickListener() {

public void onClick(View view) {

AsyncHttpClient myClient = new AsyncHttpClient();
myClient.get(URL, null);
myClient.setCookieStore(myCookieStore);
myClient.setCookieStore(myCookieStore);
String username = "";
String password = "";
RequestParams params1 = new RequestParams();
params1.put("username", username);
params1.put("password", password);
pd = ProgressDialog.show(this, "", "Signing In...");
myClient.post(URL, params1,
        new AsyncHttpResponseHandler() {
            @Override
            public void onSuccess(String response) {
                System.out.println("response" + response);
                pd.dismiss();
                if (response.contains("<!--Authorized-->")) {
                }
                else {
                    pd.dismiss();
                    Context mContext = SigninActivity.this;
                    notMatchDialog = new Dialog(mContext);
                    notMatchDialog.setContentView(R.layout.loginfaileddialoglayout);
                    notMatchDialog.setTitle("Login failed");
                    dismissDialogButton = (Button) notMatchDialog.findViewById(R.id.dismissDialogButton);
                    dismissDialogButton.setOnClickListener(dismissDialog);
                    notMatchDialog.show();
                }
            }

            @Override
            public void onFailure(Throwable e, String response) {
                // TODO Need to figure out different failures and try to help the user.
            }
        });
}
};
...