Koo*_*ian 5 java httprequest payload grooveshark
我正在尝试连接到groovehark API,这是http请求
POST URL
http://api.grooveshark.com/ws3.php?sig=f699614eba23b4b528cb830305a9fc77
POST payload
{"method":'addUserFavoriteSong",'parameters":{"songID":30547543},"header":
{"wsKey":'key","sessionID":'df8fec35811a6b240808563d9f72fa2'}}
Run Code Online (Sandbox Code Playgroud)
我的问题是如何通过Java发送此请求?
基本上,您可以使用标准 Java API 来完成。看看URL
,,URLConnection
也许HttpURLConnection
。它们在包装中java.net
。
至于API特定的签名,请尝试sStringToHMACMD5
在这里找到。
请记住更改您的 API 密钥,这非常重要,因为每个人都知道这一点。
String payload = "{\"method\": \"addUserFavoriteSong\", ....}";
String key = ""; // Your api key.
String sig = sStringToHMACMD5(payload, key);
URL url = new URL("http://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(payload);
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();
Run Code Online (Sandbox Code Playgroud)
归档时间: |
|
查看次数: |
27114 次 |
最近记录: |