これは今日 Android に関する 3 番目の質問です。これは恥ずかしくなってきました。この PHP ページに HTTP POST リクエストを送信しようとしています。MySQL データベースからアルバムの情報を取得しようとしています。
<?php
if (isset($_POST['req']) && $_POST['req'] != '') {
$request = $_POST['req'];
// Including the handler for the database
require_once 'include/db_functions.php';
$db = new db_functions();
// Array for response
$response = array("req" => $request, "success" => 0, "error" => 0);
// Check the request type
// Obtains a list of medias for the listview.
if ($request == 'listemedias'){
$mediaList = $db->getMediasList();
// Parse the media list
for($i = 0; $i < count($mediaList); $i++){
$response["mediaList"][$i]["id"] = $mediaList[$i]['idmedia'];
$response["mediaList"][$i]["titre"] = $mediaList[$i]['titre'];
$response["mediaList"][$i]["annee"] = $mediaList[$i]['annee'];
$response["mediaList"][$i]["duree"] = $mediaList[$i]['duree'];
$response["mediaList"][$i]["jaquette"] = $mediaList[$i]['jaquette'];
}
$response["success"] = 1;
echo json_encode($response);
exit;
}
// Obtains specific informations for a specific media.
if ($request == 'media') {
if (isset($_POST['no']) && $_POST['no'] != '') {
$no = $_POST['no'];
$media = $db->getMedia($no);
if ($media != false){
$response["success"] = 1;
$response["media"]["id"] = $media["idmedia"];
$response["media"]["titre"] = $media["titre"];
$response["media"]["annee"] = $media["annee"];
$response["media"]["duree"] = $media["duree"];
$response["media"]["jaquette"] = $media["jaquette"];
$response["media"]["genre"] = $media["nomgenre"];
$response["media"]["editeur"] = $media["nomediteur"];
$response["media"]["collection"] = $media["nomcollection"];
} else {
echo 'Media does not exist';
exit;
}
echo json_encode($response);
exit;
} else {
echo 'Access Denied';
exit;
}
}
} else {
echo 'Access Denied';
exit;
}
?>
問題は、HTTP 要求からの応答として "Access Deniedn" (はい、n 付き) しか得られないことです。ここに私のAndroid Javaコードがあります:
リクエストのパラメータを設定する関数は次のとおりです。
public JSONObject getMediaList(){
List<NameValuePair> params = new ArrayList<NameValuePair>(1);
// We add the request name to get all medias from the API service
params.add(new BasicNameValuePair("req","listemedias"));
// We get the JSON Object from the API service
JSONObject json = jsonParser.getJSONFromUrl(url, params);
return json;
}
実際のリクエストを行う JSONParser クラスの getJSONFromURL 関数は次のとおりです。
public JSONObject getJSONFromUrl (String url, List<NameValuePair> params) {
// Making HTTP request
try {
// 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();
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
} catch (ClientProtocolException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
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();
Log.e("JSON", json);
} 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;
}
これについて投稿して申し訳ありません。私は Android を初めて使用します。数日間、頭を悩ませようとしてきました。
EDIT:何度もデバッグした後、paramsには名前として「req」とそれに関連付けられた「listemedias」が含まれています。まったく機能しないのはなぜですか?エンコードの問題ですか?リクエストに対して送信されたヘッダーを確認する方法はありますか?
EDIT2: いくつかの余分な調整の後、私はそれを理解することができません.私はタオルを投げています. 実際に機能する他の方法はありますか?