2

我正在尝试创建一个登录此网站http://www.reclameaqui.com.br/的应用程序 ,当我输入我的登录名和密码时,应用程序向我显示:

03-01 22:34:47.220: W/SENCIDE(27717): 403 禁止

禁止的

您无权访问此服务器上的 /areadoconsumidor/。


Apache/2.2.15 (CentOS) 服务器在www.reclameaqui.com.br 80端口包com.sencide;

这是代码

    package com.sencide;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.List;

import org.apache.http.HttpResponse;
import org.apache.http.NameValuePair;
import org.apache.http.client.ClientProtocolException;
import org.apache.http.client.HttpClient;
import org.apache.http.client.entity.UrlEncodedFormEntity;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.impl.client.DefaultHttpClient;
import org.apache.http.message.BasicNameValuePair;

import android.app.Activity;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;

public class AndroidLogin extends Activity implements OnClickListener {

    Button ok,back,exit,site;
    TextView result;

    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

     // Login button clicked
        site = (Button)findViewById(R.id.button1);
        site.setOnClickListener(this);


        // Login button clicked
        ok = (Button)findViewById(R.id.btn_login);
        ok.setOnClickListener(this);

        result = (TextView)findViewById(R.id.lbl_result);

    }

    public void postLoginData() {
        // Create a new HttpClient and Post Header
        HttpClient httpclient = new DefaultHttpClient();

        /* logar no site */
        HttpPost httppost = new HttpPost("http://www.reclameaqui.com.br/includes/autenticaUsuario.php");

        try {
            // Add user name and password
            EditText uname = (EditText)findViewById(R.id.txt_username);
            String username = uname.getText().toString();

            EditText pword = (EditText)findViewById(R.id.txt_password);
            String password = pword.getText().toString();

            List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(6);
            nameValuePairs.add(new BasicNameValuePair("identificador", username ));
            nameValuePairs.add(new BasicNameValuePair("senha", password ));
            nameValuePairs.add(new BasicNameValuePair("urlRedir", "http://www.reclameaqui.com.br/areadoconsumidor/"));
            nameValuePairs.add(new BasicNameValuePair("tipo", "cadastro" ));
            nameValuePairs.add(new BasicNameValuePair("x", "35" ));
            nameValuePairs.add(new BasicNameValuePair("y", "24" ));
            httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));

            // Execute HTTP Post Request
            Log.w("SENCIDE", "Execute HTTP Post Request");
            HttpResponse response = httpclient.execute(httppost);

            String str = inputStreamToString(response.getEntity().getContent()).toString();
            Log.w("SENCIDE", str);

            if(str.toString().equalsIgnoreCase("true"))
            {
                Log.w("SENCIDE", "TRUE");
                result.setText("Login successful");   
            }else
            {
                Log.w("SENCIDE", "FALSE");
                result.setText(str);                
            }

        } catch (ClientProtocolException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }
    } 

    private StringBuilder inputStreamToString(InputStream is) {
        String line = "";
        StringBuilder total = new StringBuilder();
        // Wrap a BufferedReader around the InputStream
        BufferedReader rd = new BufferedReader(new InputStreamReader(is));
        // Read response until the end
        try {
            while ((line = rd.readLine()) != null) { 
                total.append(line); 
            }
        } catch (IOException e) {
            e.printStackTrace();
        }
        // Return full string
        return total;
    }

    @Override
    public void onClick(View view) {
        if(view == ok){
            postLoginData();
        }
    }

}

我可以对应用程序做些什么效果很好?谁来帮帮我;

4

2 回答 2

1

It looks like you are posting to the wrong page.

<form action="includes/autenticaUsuario.php" method="post" onsubmit="return valida_form(this)">

the form appears to post to http://www.reclameaqui.com.br/includes/autenticaUsuario.php.

It also has hidden fields: <input type="hidden" name="urlRedir" value="http://www.reclameaqui.com.br/areadoconsumidor/">

and

<input type="hidden" name="tipo" value="cadastro">

Second, the username input is named <input type="text" name="identificador"> and the password input is named <input type="password" name="senha"> so I believe your BasicNamveValuePairs should be more like this: new BasicNameValuePair("identificador", identificador) and new BasicNameValuePair("senha", senha)


It should probably look something like this:

List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(4);
nameValuePairs.add(new BasicNameValuePair("tipo", "cadastro"));
nameValuePairs.add(new BasicNameValuePair("urlRedir", "http://www.reclameaqui.com.br/areadoconsumidor/"));
nameValuePairs.add(new BasicNameValuePair("identificador", identificador));
nameValuePairs.add(new BasicNameValuePair("senha", senha));
于 2013-03-02T02:02:27.000 回答
0

插入一个中间 HTTP 代理,或使用某种形式的 HTTP 调试,以便您可以比较来自工作登录和编程登录的帖子 URL 和所有发布的数据。这将指出一些问题。

于 2013-03-02T03:20:05.550 回答