Android开发者控制台如何发送HTTP请求



我有一个带排行榜的小应用程序,我想用假分数隐藏玩家。我在https://developers.google.com/games/services/management/api/players/hide#request

问题是,我对http请求之类的东西一无所知。那么我该如何发送HTTP请求呢?在谷歌的开发者控制台中有终端或其他东西吗?我把命令放在那里?或者我需要做什么,发送这样的请求?

我建议您使用Volley

通过Gradle 将Volley添加到您的项目中

compile 'com.android.volley:volley:1.0.0'

将android.permission.INTERNET权限添加到应用程序的清单中。

代码取自1个

 // Instantiate the RequestQueue.
 RequestQueue queue = Volley.newRequestQueue(this);
 String url ="http://www.google.com"; //set your web call here
 // Request a string response from the provided URL.
 StringRequest stringRequest = new StringRequest(Request.Method.GET, url,
        new Response.Listener<String>() {
    @Override
    public void onResponse(String response) {
       //handle success 
    }
       }, new Response.ErrorListener() {
    @Override
    public void onErrorResponse(VolleyError error) {
       //handle error
    }
});
// Add the request to the RequestQueue.
queue.add(stringRequest);

相关内容

  • 没有找到相关文章

最新更新