auth_key 是必需的:Quickblox 错误
Posted
技术标签:
【中文标题】auth_key 是必需的:Quickblox 错误【英文标题】:auth_key is required : Quickblox error 【发布时间】:2017-04-11 13:21:08 【问题描述】:我正在使用 Quickblox REST API。当我试图从 POSTMAN 运行时,它给了我正确的输出。但是,当我通过我的 java 代码使用它时。它向我显示以下错误:
auth_key is required
这是我的java代码:
URL url = new URL("https://api.quickblox.com/session.json");
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
conn.setRequestMethod("POST");
conn.setRequestProperty("Accept", "application/json");
String current_date = dateFormat.format(cal.getTime());
Date newdt = dateFormat.parse(current_date);
long unixTime = newdt.getTime() / 1000;
String nonce = randomString(5);
String message ="application_id=XXXXX&auth_key=XXXXX&nonce=xxxxtimestamp=xxxx";
JSONObject arrayElement = new JSONObject();
arrayElement.put("application_id", "xxxxxx");
arrayElement.put("auth_key", "xxxxxxx");
arrayElement.put("nonce", nonce);
arrayElement.put("timestamp", unixTime);
arrayElement.put("signature", hmacDigest(message, secret, "HmacSHA1"));
conn.setRequestProperty("data", arrayElement.toJSONString());
conn.connect();
BufferedReader in = new BufferedReader(new InputStreamReader(conn.getInputStream()));
String inputLine;
HashMap hmdata = new HashMap();
while ((inputLine = in.readLine()) != null)
hmdata.put("data", inputLine);
in.close();
谁能帮我解决这个错误?
【问题讨论】:
【参考方案1】:如果您以 json 格式发送,则添加以下标头:
conn.setRequestProperty("Content-Type", "application/json");
因为服务器不明白你以什么格式发送请求的有效载荷
【讨论】:
是的。现在工作。我的问题是向休息客户端发送输入。所以,我使用了输出流,代码现在工作正常。将“接受”更改为“内容类型”以在 json 对象中发送数据以上是关于auth_key 是必需的:Quickblox 错误的主要内容,如果未能解决你的问题,请参考以下文章