我正在创建一个连接到 Web 服务并获取响应代码的 android 客户端。问题是每当我运行以下代码时,android 应用程序都会崩溃:
RequestParams params = new BasicRequestParams();
params.add("client_id", "24f8b46fc9db409012830ca264ad7bcf");
params.add("response_type", "code");
ServiceResponse response=Resting.get("http://pricewatch.ap01.aws.af.cm/api/pricewatch/oAuth/auth",80,params);
IContentData contentData = response.getContentData();
String content = (String) contentData.getContent();
JSONObject jsonObject = new JSONObject(content);
String code = (String) jsonObject.get("code");
return code;
它使用以下行生成 java.lang.NullPointerException:
IContentData contentData = response.getContentData();
有人可以帮忙吗?我一直被这些困住。提前致谢!