GETメソッドを使用してサーバーにデータを送信しようとしましたが、その方法を見つけることができません。私は非同期タスクでいくつかのコードを試したが、何もしなかった。 Webサービスは、CakePHPで作られており、フォーマットはこのようなものです:GETメソッドで値を送信
Base_URI/users/add.json?json={“email”: [email protected], “password”: “xxxxxxxxx”, “first_name”: “Xyz”, “last_name”: “Xyz”}
Androidの専門家は、この問題から抜け出す道を把握するように要求されています。おかげ
ここでは、コードされた:URLのこの形式を
List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>();
nameValuePairs.add(new BasicNameValuePair("email", UserDummy.email));
nameValuePairs.add(new BasicNameValuePair("password", UserDummy.password));
nameValuePairs.add(new BasicNameValuePair("first_name", UserDummy.fname));
nameValuePairs.add(new BasicNameValuePair("last_name", UserDummy.lname));
// Making HTTP request
try {
// check for request method
if (method == "POST") {
// request method is POST
// defaultHttpClient
DefaultHttpClient httpClient = new DefaultHttpClient();
HttpPost httpPost = new HttpPost(url);
httpPost.setEntity(new UrlEncodedFormEntity(params));
HttpResponse httpResponse = httpClient.execute(httpPost);
HttpEntity httpEntity = httpResponse.getEntity();
is = httpEntity.getContent();
} else if (method == "GET") {
// request method is GET
DefaultHttpClient httpClient = new DefaultHttpClient();
String paramString = URLEncodedUtils.format(params, HTTP.UTF_8);
url += "?json={" + paramString+"}"; ;
HttpGet httpGet = new HttpGet(url);
HttpResponse httpResponse = httpClient.execute(httpGet);
HttpEntity httpEntity = httpResponse.getEntity();
is = httpEntity.getContent();
}
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
Log.v("XXX", e.getMessage());
} catch (ClientProtocolException e) {
e.printStackTrace();
Log.v("XXX", e.getMessage());
} catch (IOException e) {
e.printStackTrace();
Log.v("XXX", e.getMessage());
}
try {
BufferedReader reader = new BufferedReader(new InputStreamReader(
is, "iso-8859-1"), 8);
StringBuilder sb = new StringBuilder();
String line = null;
while ((line = reader.readLine()) != null) {
sb.append(line + "\n");
}
is.close();
json = sb.toString();
} catch (Exception e) {
Log.e("Buffer Error", "Error converting result " + e.toString());
}
// try parse the string to a JSON object
try {
jObj = new JSONObject(json);
} catch (JSONException e) {
Log.e("JSON Parser", "Error parsing data " + e.toString());
}
// return JSON String
return jObj;
HTTPGET受け付けていませんし、エラーを与えているが、私は、ブラウザ上でそれをしようとすると、それが正常に動作します。エラーは次のとおりです。
Illegal character in query at index 56
あなたのコードを投稿してください...それを解決するのに役立ちます – petey
GETパラメータとしてJSONを使用してください。通常の名前と値のペアで何が問題なのですか。また、JSONをbase64にエンコードする必要があります。最後に、GETリクエストには255文字の制限があると思いますが、それについて私を引用しません。 –
また、サーバーの実装を開発しているのであれば、私は気にしませんが、GETリクエストで電子メールとパスワードを送信しないことをお勧めします。両方のパラメータを暗号化してPOSTすることは、より安全な方法です。 –