使用带有Volley或HttpURLConnection的Mashape API

时间:2016-09-12 16:53:14

标签: android android-studio mashape

任何人都可以指出我正确的方向或演示如何在没有Unirest的情况下使用API​​密钥向Mashape发出请求吗?

我希望只使用HttpURLConnection类或者像OkHttp或Volley这样的Android REST库来向Mashape API发出JSON请求,但是我无法弄清楚如何构造请求,或者如果不使用Mashape&#甚至可以39; s Unirest图书馆。

这是他们建议创建Unirest请求的方式:

HttpResponse<JsonNode> response = Unirest.get("https://wordsapiv1.p.mashape.com/words/incredible/definitions")
  .header("X-Mashape-Key", "**********apikey************")
  .header("Accept", "application/json")
  .asJson();

我试图避免Unirest,因为它似乎是一个痛苦的设置,因为伟大的CommonsWare自己说Unirest应该避免Android: Does anyone have an example of an android studio project that import Unirest via gradle?

我实际上在这个问题中尝试使用相同的api和与Beginner相同的情况: Trying to fetch JSON with Android using Unirest

1 个答案:

答案 0 :(得分:0)

我相信,我的答案就是你要找的。

我使用了Volley库,您需要添加依赖项:compile 'com.android.volley:volley:1.0.0'

RequestQueue requestQueue = Volley.newRequestQueue(this);
String uri = Uri.parse("https://wordsapiv1.p.mashape.com/words/incredible/definitions")
    .buildUpon()
    .build().toString();

StringRequest stringRequest = new StringRequest(
    Request.Method.GET, uri, new Response.Listener<String>() {
        @Override
        public void onResponse(String response) {
            Log.d("MainActivity", "response: " + response);
        }

    }, new Response.ErrorListener() {

        @Override
        public void onErrorResponse(VolleyError error) {
            Log.e("VolleyError", error.toString());
        }

    }) {

        @Override
        public Map<String, String> getHeaders() throws AuthFailureError {
            Map<String, String>  params = new HashMap<>();
            params.put("X-Mashape-Key", "<API_KEY>");
            params.put("Accept", "text/plain");
            return params;
        }
    };
    requestQueue.add(stringRequest);