我正在尝试使用groovehark开始一个简单的会话,并使用sendPostReq函数来调用startSession api。我继续从groovehark得到以下回应。
{"errors":[{"code":2,"message":"Method not found."}]}
我们使用groovehark api的方式是我们有有效负载(在我的情况下是grooveSharkjson),我们使用密钥生成md5散列,并将json发布到此url https://api.grooveshark.com/ws3.php?sig= {md5-hash -of-有效载荷}。这是正确的程序吗?
sendPostReq函数和用于生成md5哈希的代码也出现在
下面public static void sendPostReq() throws Exception{
String grooveSharkjson = "{'method':'startSession','header':{'wsKey':'wskey'}}";
String key = "secret"; // Your api key.
String sig = SecurityHelper.getHmacMD5(grooveSharkjson, key);
URL url = new URL("https://api.grooveshark.com/ws3.php?sig=" + sig);
URLConnection connection = url.openConnection();
connection.setDoInput(true);
connection.setDoOutput(true);
connection.connect();
OutputStream os = connection.getOutputStream();
PrintWriter pw = new PrintWriter(new OutputStreamWriter(os));
pw.write(grooveSharkjson);
pw.close();
InputStream is = connection.getInputStream();
BufferedReader reader = new BufferedReader(new InputStreamReader(is));
String line = null;
StringBuffer sb = new StringBuffer();
while ((line = reader.readLine()) != null) {
sb.append(line);
}
is.close();
String response = sb.toString();
System.out.println(response);
}
public static String getHmacMD5(String payload, String secret) {
String sEncodedString = null;
try {
SecretKeySpec key = new SecretKeySpec((secret).getBytes("UTF-8"), "HmacMD5");
Mac mac = Mac.getInstance("HmacMD5");
mac.init(key);
byte[] bytes = mac.doFinal(payload.getBytes("UTF-8"));
StringBuffer hash = new StringBuffer();
for (int i=0; i<bytes.length; i++) {
String hex = Integer.toHexString(0xFF & bytes[i]);
if (hex.length() == 1) {
hash.append('0');
}
hash.append(hex);
}
sEncodedString = hash.toString();
}
catch (UnsupportedEncodingException e) {}
catch(InvalidKeyException e){}
catch (NoSuchAlgorithmException e) {}
return sEncodedString ;
}
我相信我正在制作的哈希是正确的,因为我已经使用示例密钥和他们在其网站上提供给我们的秘密对其进行了验证 http://developers.grooveshark.com/tuts/public_api
答案 0 :(得分:2)
我知道我发布了大约20分钟的问题,但我刚刚找到了解决方案。 json字符串存在问题,尤其是我生成它的方式。这是应该如何生成的
String grooveSharkjson = "{\"method\":\"startSession\",\"header\":{\"wsKey\":\"wsKey\"},\"parameters\":[]}";
我没想到解决方案是如此明显,但这是我从哪里知道如何解决我的问题 - 我在他们的沙箱(http://developers.grooveshark.com/docs/public_api/v3/sandbox.php)上测试了我的密钥和秘密并仔细检查了hmac md5签名。