web-dev-qa-db-fra.com

Http POST Demande avec autorisation sur android

Lorsque j'ai défini une en-tête "Autorisation" avec Sethader à partir de httpport, HostName disparaît de la demande et il y a toujours une erreur 400 (mauvaise demande) renvoyée. Le même code fonctionne bien sur pure Java (sans Android) et lorsque je supprimai le réglage "Autorisation" en-tête sur Android Cela fonctionne bien, mais j'ai besoin d'autorisation . Ceci est un code (domaine modifié):

HttpClient client = new DefaultHttpClient();
HttpPost post = new HttpPost("http://myhost.com/test.php");
post.setHeader("Accept", "application/json");
post.setHeader("User-Agent", "Apache-HttpClient/4.1 (Java 1.5)");
post.setHeader("Host", "myhost.com");
post.setHeader("Authorization",getB64Auth());
List <NameValuePair> nvps = new ArrayList <NameValuePair>();
nvps.add(new BasicNameValuePair("data[body]", "test"));
AbstractHttpEntity ent=new UrlEncodedFormEntity(nvps, HTTP.UTF_8);
ent.setContentType("application/x-www-form-urlencoded; charset=UTF-8");
ent.setContentEncoding("UTF-8");
post.setEntity(ent);
post.setURI(new URI("http://myhost.com/test.php"));
HttpResponse response =client.execute(post);

Méthode getB64Auth () renvoie "Connexion: mot de passe" codé à l'aide de la base64 comme: "ynxpcyrlc3rwmtitulhlsgs =" Mais ce n'est pas important.

Ceci est une pièce d'erreur de LightTPD.Log lorsque le code ci-dessus est invoqué sur Pure Java:

2011-02-23 15:37:36: (request.c.304) fd: 8 request-len: 308
POST /test.php HTTP/1.1
Accept: application/json
User-Agent: Apache-HttpClient/4.1 (Java 1.5)
Host: myhost.com
Authorization: Basic YnxpcYRlc3RwMTulHGhlSGs=
Content-Length: 21
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Content-Encoding: UTF-8
Connection: Keep-Alive

HTTP/1.1 200 OK
Content-type: text/html
Transfer-Encoding: chunked

et enregistrer à partir d'accès.log (IP modifiée):

1.1.1.1 myhost.com - [23/Feb/2011:15:37:36 +0100] "POST /test.php HTTP/1.1" 200 32 "-" "Apache-HttpClient/4.1 (Java 1.5)"

Lorsque le même code est invoqué sur Android, je reçois cela dans les journaux:

POST /test.php HTTP/1.1
Accept: application/json
User-Agent: Apache-HttpClient/4.1 (Java 1.5)
Host: myhost.com
Authorization: Basic YnxpcYRlc3RwMTulHGhlSGs=

Content-Length: 21
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Content-Encoding: UTF-8
Connection: Keep-Alive
Expect: 100-Continue


2011-02-23 15:45:10: (response.c.128) Response-Header:
HTTP/1.1 400 Bad Request
Content-Type: text/html
Content-Length: 349
Connection: close

access.log:

1.1.1.1 - - [23/Feb/2011:15:45:10 +0100] "POST /test.php HTTP/1.1" 400 349 "-" "Apache-HttpClient/4.1 (Java 1.5)"

Comment obtenir une autorisation avec POST Travailler sur Android? Lorsque j'utilise httpurlconnection au lieu de httpclient, il n'est pas différente.

16
koral

Merci à Samuh pour un indice :) Il y avait un personnage de nouvelle ligne supplémentaire inséré qui n'a aucun moyen de recevoir des demandes, mais compte dans POST. Ceci est un moyen approprié de générer un en-tête d'autorisation dans Android (dans GetB64Auth dans ce cas):

 private String getB64Auth (String login, String pass) {
   String source=login+":"+pass;
   String ret="Basic "+Base64.encodeToString(source.getBytes(),Base64.URL_SAFE|Base64.NO_WRAP);
   return ret;
 }

Le drapeau de base64.no_wrap manquait.

57
koral

utilisez simplement ceci:

String authorizationString = "Basic " + Base64.encodeToString(
                        ("your_login" + ":" + "your_password").getBytes(),
                        Base64.NO_WRAP); //Base64.NO_WRAP flag
                post.setHeader("Authorization", authorizationString);
3
bourax webmaster