如何通过JsonObjectRequest向Google发送API请求?

时间:2019-04-11 12:31:12

标签: android google-api http-post google-vision jsonobjectrequest

我想在我的Android应用程序中测试cloud vision API。

该API已激活,并且可以在Google Cloud Explorer中正常工作,如下图所示。

further you can read from here

如何通过RequestQueue对象发出简单的发布请求?

我尝试了很多,但是我的程序总是使用onErrorResponse方法跳转。

我的代码:

private static String apiKey = "myAPIKey";
private static final String baseURI = "https://vision.googleapis.com/v1/images:annotate?fields=responses%2FfaceAnnotations&key=" + apiKey;


private static String exampleRequest = "{\"requests\":[{\"image\":{\"source\":{\"imageUri\":\"https://wikipedia.de/img/Wikipedia-logo-v2-de.svg\"}},\"features\":[{\"type\":\"TEXT_DETECTION\"}]}]}";



private static void testRequest(){
    JSONObject jsonObject = getJSONRequest(exampleRequest);
    Response.Listener<JSONObject> responseListener = getResponseListener();
    Response.ErrorListener errorListener = getErrorListener();

    JsonObjectRequest jsonObjectRequest = new JsonObjectRequest(baseURIPost, jsonObject, responseListener, errorListener);
    RequestQueue requestQueue = Volley.newRequestQueue(context);
    requestQueue.add(jsonObjectRequest);
}

private static Response.ErrorListener getErrorListener() {
    return new Response.ErrorListener() {
        @Override
        public void onErrorResponse(VolleyError error) {
        }
    };
}

private static Response.Listener<JSONObject> getResponseListener() {
    return new Response.Listener() {
        @Override
        public void onResponse(Object response) {
        }
    };
}

private static JSONObject getJSONRequest(String json) {
    try {
        return new JSONObject(json);
    } catch (JSONException e) {
        e.printStackTrace();
    }
    return null;
}

1 个答案:

答案 0 :(得分:0)

问题是没有向API密钥添加帐单。 上面问题中的代码现在可以正常工作。