我在Android应用程序中使用Volley从Misfit API(http://build.misfit.com)获取数据。在有人登录后,我试图构造一个间歇性活动,以从API获取所有数据。在该活动中,我执行一个JsonObject GET请求,该请求应为我提供有关该应用程序用户的一些信息。到目前为止的代码如下:

package com.iss_fitness.myapplication;

import android.app.Activity;
import android.content.Intent;
import android.content.SharedPreferences;
import android.os.Bundle;
import android.os.Handler;
import android.view.View;

import com.android.volley.Request;
import com.android.volley.RequestQueue;
import com.android.volley.Response;
import com.android.volley.VolleyError;
import com.android.volley.toolbox.Volley;

import org.json.JSONObject;

import java.util.HashMap;
import java.util.Map;

import learn2crack.weboauth2.R;

public class LoadingScreenActivity extends Activity {

    //Introduce an delay
    private final int WAIT_TIME = 500;
    private static final String QUERY_URL = "https://api.misfitwearables.com/move/resource/v1/user/me/profile";

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        // TODO Auto-generated method stub
        super.onCreate(savedInstanceState);
        System.out.println("LoadingScreenActivity  screen started");
        setContentView(R.layout.loading_screen);
        findViewById(R.id.mainSpinner1).setVisibility(View.VISIBLE);

        // Instantiate the RequestQueue.
        final RequestQueue queue = Volley.newRequestQueue(this);

        new Handler().postDelayed(new Runnable() {
            @Override
            public void run() {
                executeJson();
                System.out.println("Going to Profile Data");
                /* Create an Intent that will start the ProfileData-Activity. */
                Intent mainIntent = new Intent(LoadingScreenActivity.this, DataView.class);
                LoadingScreenActivity.this.startActivity(mainIntent);
                LoadingScreenActivity.this.finish();
            }
        }, WAIT_TIME);
    }

    private Response.ErrorListener createRequestErrorListener() {

        return new Response.ErrorListener() {
            @Override
            public void onErrorResponse(VolleyError error) {
                System.out.println(error);
            }
        };
    }

    private void executeJson() {
        SharedPreferences prefs = this.getSharedPreferences("AppPref", MODE_PRIVATE);
        final String token = prefs.getString("token", null);
        RequestQueue queue = Volley.newRequestQueue(this);
        Map<String, String> params = new HashMap<String, String>();
        System.out.println(token);
        params.put("access_token", token);
        CustomRequest jsonRequest = new CustomRequest(Request.Method.GET, QUERY_URL, params,
                new Response.Listener<JSONObject>() {
                    @Override
                    public void onResponse(JSONObject response) {
                        System.out.println(response);
                    }
                }, this.createRequestErrorListener());
        System.out.println(jsonRequest);
        queue.add(jsonRequest);
    }
}


我是Android开发的新手,请耐心等待,我将尽力描述代码。我已经实现了JsonObjectRequest所建议的帮助类,因为据我了解,在本地定义请求时不能覆盖getparams方法。 executeJson()方法是一个有趣的方法:我从SharedPreferences(正确存储它的位置)中获取用户访问令牌,将其放在String Map中,然后将其提供给CustomRequest,在该类中,它被放入帮助类中。一个仅返回参数的getparams方法。可悲的是,由于错误侦听器报告以下内容,因此永远不会调用responselistener:

com.android.volley.NoConnectionError: java.io.IOException: No authentication challenges found


根据Misfit的API参考,应该可以使用。
现在,我知道GET请求需要“标头”而不是“ params”,但这有什么区别吗?

最佳答案

好吧,我找到了解决方案。 helper类包含一个重载的getparams方法,但没有getheaders方法。 GET请求需要getheaders,post需要getparams。

10-08 19:01