【问题标题】:OkHttp Request in Separate Class单独类中的 OkHttp 请求
【发布时间】:2016-08-23 19:10:39
【问题描述】:

所以我目前在我的 MainActivity 中有我的 OkHttp 请求,以便测试它们是否真的有效。但是,我需要将它们移到一个单独的类中,以便我可以使用这些请求来填充我的 Navagation Drawer 菜单项。此外,在我的 MainActivity 中,我执行使令牌无效并请求它的 oAuth,并且该令牌需要在我的请求中使用。当我将 MainActivity 中的新类称为 apiRequest.run(); 时,我有点迷失了,这就是我在运行控制台中返回的内容。

I/System.out: ya29.CjBIAx67rM70-CKu9Wc5fUSLzt9rIqt4bRubpl4hB9UjwqeRatoZppbMmNDl_SPcFWA
E/AuthApp: ya29.CjBIAx67rM70-CKu9Wc5fUSLzt9rIqt4bRubpl4hB9UjwqeRatoZppbMmNDl_SPcFWA
W/System.err: java.lang.NullPointerException: Attempt to invoke interface method 'java.lang.String android.content.SharedPreferences.getString(java.lang.String, java.lang.String)' on a null object reference
W/System.err:     at com.example.jamessingleton.chffrapi.AuthPreferences.getToken(AuthPreferences.java:43)
W/System.err:     at com.example.jamessingleton.chffrapi.APIRequests.run(APIRequests.java:34)
W/System.err:     at com.example.jamessingleton.chffrapi.MainActivity$1.onClick(MainActivity.java:90)
W/System.err:     at com.google.android.gms.common.SignInButton.onClick(Unknown Source)
W/System.err:     at android.view.View.performClick(View.java:5697)
W/System.err:     at android.widget.TextView.performClick(TextView.java:10814)
W/System.err:     at android.view.View$PerformClick.run(View.java:22526)
W/System.err:     at android.os.Handler.handleCallback(Handler.java:739)
W/System.err:     at android.os.Handler.dispatchMessage(Handler.java:95)
W/System.err:     at android.os.Looper.loop(Looper.java:158)
W/System.err:     at android.app.ActivityThread.main(ActivityThread.java:7224)
W/System.err:     at java.lang.reflect.Method.invoke(Native Method)
W/System.err:     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1230)
W/System.err:     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1120)

这是我正在实施的 MainActivity。

Context mContext = MainActivity.this;
    private AccountManager mAccountManager;
    private AuthPreferences authPreferences;
    private APIRequests apiRequests;
    EditText emailText;
    TextView responseView;
    ProgressBar progressBar;

    static final String API_URL = "https://api.comma.ai/v1/auth/?access_token=";
    static final String ChffrMe_URL = "https://api.comma.ai/v1/me/";
    static final String SCOPE = "https://www.googleapis.com/auth/userinfo.email https://www.googleapis.com/auth/plus.me";
    private static final int AUTHORIZATION_CODE = 1993;
    private static final int ACCOUNT_CODE = 1601;
    String commatoken;
    String commaMyInfo;
    private final OkHttpClient client = new OkHttpClient();



    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        responseView = (TextView) findViewById(R.id.responseView);
        progressBar = (ProgressBar) findViewById(R.id.progressBar);
        mAccountManager = AccountManager.get(this);
        authPreferences = new AuthPreferences(this);
        apiRequests = new APIRequests();
        final Context context = this;
        invalidateToken();
        requestToken();
        SignInButton signInButton = (SignInButton) findViewById(R.id.sign_in_button);
        signInButton.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                if (authPreferences.getUser() != null && authPreferences.getToken() != null) {
                    System.out.println(authPreferences.getToken());
                    doCoolAuthenticatedStuff();
//                    Intent intent = new Intent(context, NavDrawerActivity.class);
//                    startActivity(intent);
                    try {
                        apiRequests.run();
                    } catch (Exception e) {
                        e.printStackTrace();
                    }
//                    try {
//                        run();
//                    } catch (Exception e) {
//                        e.printStackTrace();
//                    }
                    //new RetrieveFeedTask().execute();
                } else {
                    chooseAccount();
                }
            }
        });

这是我的 APIRequests.java

public class APIRequests {
    private final OkHttpClient client = new OkHttpClient();
    static final String API_URL = "https://api.comma.ai/v1/auth/?access_token=";
    static final String ChffrMe_URL = "https://api.comma.ai/v1/me/";
    private AuthPreferences authPreferences = new AuthPreferences(this);
    String commatoken;
    String commaMyInfo;
    private MainActivity mActivity;

    public void run() throws Exception {
        Request request = new Request.Builder()
                .url(API_URL + authPreferences.getToken())
                .build();

        client.newCall(request).enqueue(new Callback() {
            public void onFailure(Call call, IOException e) {
                e.printStackTrace();
            }


            public void onResponse(Call call, Response response) throws IOException {
                if (!response.isSuccessful()) throw new IOException("Unexpected code " + response);

                Headers responseHeaders = response.headers();
                for (int i = 0, size = responseHeaders.size(); i < size; i++) {
                    System.out.println(responseHeaders.name(i) + ": " + responseHeaders.value(i));
                }
                try
                {
                    String token = response.body().string();
                    JSONObject json = new JSONObject(token);
                    commatoken = json.getString("access_token");
                } catch (JSONException e)
                {

                }
//                commatoken = response.body().string();
//                System.out.println(commatoken);

                if(response.isSuccessful())
                {
                    final Request dataRequest = new Request.Builder()
                            .header("content-type", "application/x-www-form-urlencoded")
                            .header("authorization", "JWT "+ commatoken)
                            .url(ChffrMe_URL).build();

                    client.newCall(dataRequest).enqueue(new Callback() {
                        @Override
                        public void onFailure(Call call, IOException e) {
                            e.printStackTrace();
                        }

                        @Override
                        public void onResponse(Call call, Response responseMe) throws IOException {
                            if (!responseMe.isSuccessful()) throw new IOException("Unexpected code " + responseMe);

                            Headers responseHeaders = responseMe.headers();
                            for (int i = 0, size = responseHeaders.size(); i < size; i++) {
                                System.out.println(responseHeaders.name(i) + ": " + responseHeaders.value(i));
                            }
                            try
                            {
                                String myInfo = responseMe.body().string();
                                JSONObject json = new JSONObject(myInfo);
                                commaMyInfo = json.getString("points");
                                System.out.println(commaMyInfo);
                            } catch (JSONException e)
                            {

                            }
//                            runOnUiThread(new Runnable() {
//                                @Override
//                                public void run() {
//                                    responseView.setText("Comma Points: " +commaMyInfo);
//                                }
//                            });

                        }
                    });
                }
            }

        });
    }
}

不知道为什么它不喜欢我的 apiRequests.run();

这里是 AuthPreferences

public class AuthPreferences {
    private static final String KEY_USER = "user";
    private static final String KEY_TOKEN = "token";

    private SharedPreferences preferences;

    public AuthPreferences(Context context) {
        preferences = context
                .getSharedPreferences("auth", Context.MODE_PRIVATE);
    }

    public AuthPreferences(APIRequests apiRequests) {

    }

    public void setUser(String user) {
        Editor editor = preferences.edit();
        editor.putString(KEY_USER, user);
        editor.commit();
    }

    public void setToken(String password) {
        Editor editor = preferences.edit();
        editor.putString(KEY_TOKEN, password);
        editor.commit();
    }

    public String getUser() {
        return preferences.getString(KEY_USER, null);
    }

    public String getToken() {
        return preferences.getString(KEY_TOKEN, null);

    }
}

【问题讨论】:

  • at com.example.jamessingleton.chffrapi.AuthPreferences.getToken(AuthPreferences.java:43) -- 你的问题在AuthPreferences
  • 我在 APIRequests.java 中正确调用它了吗? Authpreferences 也用于我的 MainActivity,因为这是我获取令牌的地方。所以我想我应该从 MainActivity 中获取令牌,而不是在我的 APIRequests 中实现新的 AuthPreferences?
  • “我在 APIRequests.java 中正确调用它了吗?” - 我无法知道,因为您的问题中没有包含AuthPreferences.java。但是,我发现您通过将APIRequests 传递给构造函数来创建实例相当可疑。在活动中,您将活动传递给构造函数。也许您应该将活动中的AuthPreferences 实例传递给APIRequests,而不是创建一个新实例。
  • 我已经包含了AuthPreferences。没错,所以通过 authPreferences.getToken();到 APIRequests.java?如果是这样,那会是什么样子?

标签: java android get okhttp okhttp3


【解决方案1】:

您的AuthPreferences 类有两个构造函数。一个设置preferences 字段。另一个没有。当您使用未设置 preferences 字段的构造函数时会崩溃,因为当您尝试使用该字段时,该字段是 null

我建议去掉第二个构造函数。然后,向APIRequests 添加一个以AuthPreferences 作为参数的构造函数,并使用它来填充authPreferences 字段(而不是创建一个新的、有缺陷的AuthPreferences 实例)。然后,在活动中,将apiRequests = new APIRequests(); 替换为apiRequests = new APIRequests(authPreferences);,以满足新构造函数的要求。

【讨论】:

  • 它没有崩溃,只是由于某种原因没有进入 APIRequests 运行,因为我没有看到 System.out.println(commaMyInfo);你会建议解决这个问题吗?
  • @JamesRobertSingleton:“它没有崩溃”——嗯,您问题中的堆栈跟踪表明并非如此。
  • 我应该澄清并说应用程序本身没有崩溃。它只是停留在activity_main
  • @JamesRobertSingleton:“应用程序本身没有崩溃”——同样,您问题中的堆栈跟踪表明并非如此。具体来说,当用户单击按钮时,您会崩溃。
  • @JamesRobertSingleton:我不知道,抱歉。
猜你喜欢
  • 2019-12-27
  • 2020-06-21
  • 2016-11-23
  • 1970-01-01
  • 2020-03-28
  • 2019-08-27
  • 1970-01-01
  • 1970-01-01
  • 2014-02-02
相关资源
最近更新 更多