そこで、最近、クラウド ストレージ ソリューション (REST) を提供するために、Volley API をアプリに統合しました。それ以来、HTTP POST 経由で RDF (テキスト/タートル) データを送信しようとして問題が発生するまで、API を使用したことはありません。GET および POST 要求を (Postman Chrome アプリ経由で) 送信し、200 および 201 応答を受信するたびに、REST サーバーは完全に機能しています。API 経由で簡単な GET リクエストを送信することはできましたが、HTTP POST を送信すると 400 エラーが発生します。
コードは次のとおりです。
//the RDF turtle payload to send over HTTP POST
final String bodyPost = "@prefix : <http://xxx.xxx.xxx.gr/xxx/schema/xxx#> ." + "\n" +
"@prefix xsd: <http://www.w3.org/2001/XMLSchema#> ." + "\n" +
"[a :Patient ;" + "\n" +
":lastName "+'"'+"Aylakiotis"+'"'+"^^xsd:string ; " + "\n" +
":firstName "+'"'+"Yiannis"+'"'+"^^xsd:string ;" + "\n" +
":dateOfBirth "+'"'+"1970-04-14"+'"'+"^^xsd:date ;" + "\n" +
":amka "+'"'+"12345678903"+'"'+"^^xsd:string ;" + "\n" +
":gender :Male ;" + "\n" +
"] .";
RequestQueue queue = Volley.newRequestQueue(this);
final String URL ="http://xxx.xxx.xxx:8080/xxx/";
EditText folderTitle = (EditText) findViewById(R.id.folderTitle);
StringRequest strReq = new StringRequest(Request.Method.POST, URL,
new Response.Listener() {
@Override
public void onResponse(Object response) {
folderTitle.setText("Response is: " + response.toString().substring(0,500));
}
}, new Response.ErrorListener() {
@Override
public void onErrorResponse(VolleyError error) {
folderTitle.setText("Error: " + error.getMessage());
}
}) {
@Override
public byte[] getBody() throws AuthFailureError {
System.out.println("string post data: " + bodyPost);
if (params != null && params.size() > 0) {
System.out.println("string post data: " + bodyPost);
return encodeParameters(params, getParamsEncoding());
}
return bodyPost.getBytes();
}
@Override
public Map<String, String> getHeaders() throws AuthFailureError {
Map<String, String> headers = new HashMap<String, String>();
String creds = String.format("%s:%s", "xxx", "xxx");
String auth = "Basic " + Base64.encodeToString(creds.getBytes(), Base64.DEFAULT);
headers.put("Authorization", auth);
headers.put("Content-Type", "text/turtle");
return headers;
}
};
// Add the request to the RequestQueue.
queue.add(strReq);
String bodyPost
タートル RDF 形式で送信したいデータ ペイロードです。これをメソッドに入れてgetBody()
いますが、まだ 400 の悪いリクエストが返されます。Postman Chrome アプリを介して POST http 経由でこの文字列を既に送信しましたが、動作します (201 Created)。ほとんどの実装にあることがわかりましたgetParams()
が、これにはキーと値のペアが必要ですが、生データの文字列全体として送信したいトリプルを使用しています