1

リーダーボードを備えた小さなアプリがあり、偽のスコアを持つプレーヤーを非表示にしたいと考えています。https://developers.google.com/games/services/management/api/players/hide#requestでそれについて読みました

問題は、http Requests などから何もわからないことです。では、HTTP リクエストを送信するにはどうすればよいでしょうか。コマンドを入力したGoogleの開発者コンソールにターミナルなどがありますか? または、このようなリクエストを送信するには、何をする必要がありますか?

4

1 に答える 1

1

ボレーの使用をお勧めします

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);
于 2016-05-09T06:27:28.153 に答える