Strava API 在初始身份验证时返回 404

Strava API returning 404 at intitial authentication

我在使用 Strava API 时有点乱,但是当我想执行初始身份验证时,我总是收到 404 错误。我对此很陌生,因此非常感谢您的帮助。

            @Override
            public void onClick(View v) {
                RequestQueue queue = Volley.newRequestQueue(MainActivity.this);

                final Uri testUri = Uri.parse("https://www.strava.com/oauth/token")
                        .buildUpon()
                        .appendQueryParameter("client_id", client_id)
                        .appendQueryParameter("client_secret", client_secret)
                        .appendQueryParameter("code", token)
                        .appendQueryParameter("grant_type", "authorization_code")
                        .build();

                StringRequest stringRequest = new StringRequest(Request.Method.GET, testUri.toString(),
                        new Response.Listener<String>() {
                            @Override
                            public void onResponse(String response) {
                                Toast.makeText(MainActivity.this,"Response received", Toast.LENGTH_SHORT).show();
                                textview.setText(response);
                            }
                        }, new Response.ErrorListener() {
                    @Override
                    public void onErrorResponse(VolleyError error) {
                        error.getCause();
                        Toast.makeText(MainActivity.this,"Error received", Toast.LENGTH_SHORT).show();
                    }
                });

                queue.add(stringRequest);
                Toast.makeText(MainActivity.this,"Request sent", Toast.LENGTH_SHORT).show();
            }
        });

好吧,这很尴尬。我使用的是 GET 方法,而它应该是 POST 方法。改正后,我的问题就解决了。