我试图用grooveshark启动一个简单的会话,并使用sendpostreq函数调用start session api。我一直从grooveshark得到以下回复。

{"errors":[{"code":2,"message":"Method not found."}]}

使用grooveshark api的方法是我们拥有有效负载(在我的例子中是grooveshark json),我们使用密钥生成一个md5散列,并将该json发布到这个urlhttps://api.grooveshark.com/ws3.php?sig={md5 hash of payload}。这是正确的程序吗?
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

最佳答案

我知道我在20分钟前就把问题发出去了,但我找到了解决办法。json字符串有问题,特别是我生成它的方式。这就是它的生成方式

    String grooveSharkjson = "{\"method\":\"startSession\",\"header\":{\"wsKey\":\"wsKey\"},\"parameters\":[]}";

我没想到解决方案会如此明显,但这是从我的想法如何解决我的问题-我测试了我的密钥和秘密在他们的沙盒(http://developers.grooveshark.com/docs/public_api/v3/sandbox.php)和双重检查的hmac md5签名。

关于java - Grooveshark API始终返回“找不到方法”消息,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/21353665/

10-09 05:26