6

sto ottenendo il seguente errore quando faccio funzionare l'applicazione: BasicNetwork.performRequest: codice di risposta imprevisto 401Android: Volley header HTTP Request personalizzato

ho bisogno di passare un'email, una password e un token per l'accesso l'URL, ma non funziona

ho iniziato a imparare Android la settimana scorsa, non so molto

package quest.testvolley; 

import com.android.volley.AuthFailureError; 
import com.android.volley.VolleyLog; 
import com.kpbird.volleytest.R; 

import android.app.ProgressDialog; 
import android.os.Bundle; 
import android.app.Activity; 
import android.util.Log; 
import android.view.LayoutInflater; 
import android.view.Menu; 
import android.view.View; 
import android.view.ViewGroup; 
import android.widget.BaseAdapter; 
import android.widget.ListView; 
import android.widget.TextView; 
import com.android.volley.Request; 
import com.android.volley.RequestQueue; 
import com.android.volley.Response; 
import com.android.volley.VolleyError; 
import com.android.volley.toolbox.JsonObjectRequest; 
import com.android.volley.toolbox.Volley; 
import org.json.JSONArray; 
import org.json.JSONObject; 

import java.net.URL; 
import java.util.ArrayList; 
import java.util.HashMap; 
import java.util.Map; 

public class MainActivity extends Activity { 

    private String TAG = this.getClass().getSimpleName(); 
    private ListView lstView; 
    private RequestQueue mRequestQueue; 
    private ArrayList<NewsModel> arrNews ; 
    private LayoutInflater lf; 
    private VolleyAdapter va; 
    private ProgressDialog pd; 

    @Override 
    protected void onCreate(Bundle savedInstanceState) { 

     super.onCreate(savedInstanceState); 
     setContentView(R.layout.activity_main); 
     lf = LayoutInflater.from(this); 

     arrNews = new ArrayList<NewsModel>(); 
     va = new VolleyAdapter(); 

     lstView = (ListView) findViewById(R.id.listView); 
     lstView.setAdapter(va); 
     mRequestQueue = Volley.newRequestQueue(this); 
     String url = "http://192.168.1.18/repr/api/clientes/Y2FtcG9zKGlkLG5vbWUsc3RhdHVzKTppnaW1pdCgxMCk6b2Zmc2V0KDApOm9yZGVtKG5vbWVbYXNjXSk="; 
     pd = ProgressDialog.show(this,"Please Wait...","Please Wait..."); 
     try{ 

      Thread.sleep(2000); 
     }catch(Exception e){} 

     JsonObjectRequest jsonObjReq = new JsonObjectRequest(Request.Method.POST, url, null, new Response.Listener<JSONObject>() { 

      @Override 
      public void onResponse(JSONObject response) { 

       Log.d(TAG, response.toString()); 
       pd.hide(); 
      } 
     }, new Response.ErrorListener() { 

      @Override 
      public void onErrorResponse(VolleyError error) { 

       VolleyLog.d(TAG, "Error: " + error.getMessage()); 
       pd.hide(); 
      } 
     }) { 

      @Override 
      protected Map<String, String> getParams() { 

       Map<String, String> params = new HashMap<String, String>(); 
       params.put("email", "[email protected]"); 
       params.put("senha", "test"); 
       params.put("X-API-TOKEN", "99KI9Gj68CgCf70deM22Ka64chef2C40Gm2lFJ2J0G9JkD0afd19MfacGf3FFm8CM1hG0eDiIk8"); 

       return params; 
      } 
     }; 

     mRequestQueue.add(jsonObjReq); 
    } 

risposta

14

Il JsonObjectRequest è esteso JsonRequest che Override getBody() metodo direttamente, in modo che il getParam() sarebbe mai invocare, vi consiglio di estendere StringRequest invece di JsonObjectRequest .

è possibile controllare la risposta this per ulteriori dettagli.

a proposito, hai un'altra scelta: Netroid, che ha basato Volley, ha offerto più funzionalità a tutti.

+0

stesso prm anche per me, ma devo vuole inviare l'oggetto JSON al server. quindi come posso risolvere questo problema ?? – John

1

Se si desidera inviare il Map come un oggetto JSON (si utilizza la classe JsonObjectRequest) , dovresti metterlo nel JsonobjectRequ est costruttore:

HashMap<String, String> params = new HashMap<String, String>(); 
params.put("email", "[email protected]"); 
params.put("senha", "test"); 
params.put("X-API-TOKEN", "99KI9Gj68CgCf70deM22Ka64chef2C40Gm2lFJ2J0G9JkD0afd19MfacGf3FFm8CM1hG0eDiIk8"); 

JsonObjectRequest jsonObjReq = new JsonObjectRequest(url, new JSONObject(params), ..., ...); 

Vedi this tuto

+2

ancora non funziona – AND4011002849

0

questo ha lavorato per me (visto su Volley JsonObjectRequest Post parameters no longer work)

String url = "https://www.youraddress.com/"; 

Map<String, String> params = new HashMap(); 
params.put("first_param", 1); 
params.put("second_param", 2); 

JSONObject parameters = new JSONObject(params); 

JsonObjectRequest jsonRequest = new JsonObjectRequest(Request.Method.GET, url, parameters, new Response.Listener<JSONObject>() { 
    @Override 
    public void onResponse(JSONObject response) { 
     //TODO: handle success 
    } 
}, new Response.ErrorListener() { 
    @Override 
    public void onErrorResponse(VolleyError error) { 
     error.printStackTrace(); 
     //TODO: handle failure 
    } 
}); 

Volley.newRequestQueue(this).add(jsonRequest);