淘宝开发平台 java 调用实例

Java调用示例代码
更新日期:2016-02-06访问次数:53432
主要步骤
填充公共参数
填充业务参数
计算请求签名
发起API调用
获取API结果
示例代码
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.OutputStream;
import java.io.Reader;
import java.net.HttpURLConnection;
import java.net.URL;
import java.net.URLEncoder;
import java.security.GeneralSecurityException;
import java.security.MessageDigest;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.Arrays;
import java.util.Date;
import java.util.HashMap;
import java.util.Map;
import java.util.Map.Entry;
import java.util.Set;
import java.util.zip.GZIPInputStream;

import javax.crypto.Mac;
import javax.crypto.SecretKey;
import javax.crypto.spec.SecretKeySpec;

public class ApiTest {

private static final String SIGN_METHOD_MD5 = "md5";
private static final String SIGN_METHOD_HMAC = "hmac";
private static final String CHARSET_UTF8 = "utf-8";
private static final String CONTENT_ENCODING_GZIP = "gzip";// TOP服务地址,正式环境需要设置为http://gw.api.taobao.com/router/rest
private static final String serverUrl = "http://gw.api.tbsandbox.com/router/rest";
private static final String appKey = "test"; // 可替换为您的沙箱环境应用的appKey
private static final String appSecret = "test"; // 可替换为您的沙箱环境应用的appSecret
private static final String sessionKey = "test"; // 必须替换为沙箱账号授权得到的真实有效sessionKeypublic static void main(String[] args) throws Exception {System.out.println(getSellerItem());
}private static String getSellerItem() throws IOException {Map<String, String> params = new HashMap<String, String>();// 公共参数params.put("method", "taobao.item.seller.get");params.put("app_key", appKey);params.put("session", sessionKey);DateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");params.put("timestamp", df.format(new Date()));params.put("format", "json");params.put("v", "2.0");params.put("sign_method", "hmac");// 业务参数params.put("fields", "num_iid,title,nick,price,num");params.put("num_iid", "123456789");// 签名参数params.put("sign", signTopRequest(params, appSecret, SIGN_METHOD_HMAC));// 请用APIreturn callApi(new URL(serverUrl), params);
}/*** 对TOP请求进行签名。*/
private static String signTopRequest(Map<String, String> params, String secret, String signMethod) throws IOException {// 第一步:检查参数是否已经排序String[] keys = params.keySet().toArray(new String[0]);Arrays.sort(keys);// 第二步:把所有参数名和参数值串在一起StringBuilder query = new StringBuilder();if (SIGN_METHOD_MD5.equals(signMethod)) {query.append(secret);}for (String key : keys) {String value = params.get(key);if (isNotEmpty(key) && isNotEmpty(value)) {query.append(key).append(value);}}// 第三步:使用MD5/HMAC加密byte[] bytes;if (SIGN_METHOD_HMAC.equals(signMethod)) {bytes = encryptHMAC(query.toString(), secret);} else {query.append(secret);bytes = encryptMD5(query.toString());}// 第四步:把二进制转化为大写的十六进制return byte2hex(bytes);
}/*** 对字节流进行HMAC_MD5摘要。*/
private static byte[] encryptHMAC(String data, String secret) throws IOException {byte[] bytes = null;try {SecretKey secretKey = new SecretKeySpec(secret.getBytes(CHARSET_UTF8), "HmacMD5");Mac mac = Mac.getInstance(secretKey.getAlgorithm());mac.init(secretKey);bytes = mac.doFinal(data.getBytes(CHARSET_UTF8));} catch (GeneralSecurityException gse) {throw new IOException(gse.toString());}return bytes;
}/*** 对字符串采用UTF-8编码后,用MD5进行摘要。*/
private static byte[] encryptMD5(String data) throws IOException {return encryptMD5(data.getBytes(CHARSET_UTF8));
}/*** 对字节流进行MD5摘要。*/
private static byte[] encryptMD5(byte[] data) throws IOException {byte[] bytes = null;try {MessageDigest md = MessageDigest.getInstance("MD5");bytes = md.digest(data);} catch (GeneralSecurityException gse) {throw new IOException(gse.toString());}return bytes;
}/*** 把字节流转换为十六进制表示方式。*/
private static String byte2hex(byte[] bytes) {StringBuilder sign = new StringBuilder();for (int i = 0; i < bytes.length; i++) {String hex = Integer.toHexString(bytes[i] & 0xFF);if (hex.length() == 1) {sign.append("0");}sign.append(hex.toUpperCase());}return sign.toString();
}private static String callApi(URL url, Map<String, String> params) throws IOException {String query = buildQuery(params, CHARSET_UTF8);byte[] content = {};if (query != null) {content = query.getBytes(CHARSET_UTF8);}HttpURLConnection conn = null;OutputStream out = null;String rsp = null;try {conn = (HttpURLConnection) url.openConnection();conn.setRequestMethod("POST");conn.setDoInput(true);conn.setDoOutput(true);conn.setRequestProperty("Host", url.getHost());conn.setRequestProperty("Accept", "text/xml,text/javascript");conn.setRequestProperty("User-Agent", "top-sdk-java");conn.setRequestProperty("Content-Type", "application/x-www-form-urlencoded;charset=" + CHARSET_UTF8);out = conn.getOutputStream();out.write(content);rsp = getResponseAsString(conn);} finally {if (out != null) {out.close();}if (conn != null) {conn.disconnect();}}return rsp;
}private static String buildQuery(Map<String, String> params, String charset) throws IOException {if (params == null || params.isEmpty()) {return null;}StringBuilder query = new StringBuilder();Set<Entry<String, String>> entries = params.entrySet();boolean hasParam = false;for (Entry<String, String> entry : entries) {String name = entry.getKey();String value = entry.getValue();// 忽略参数名或参数值为空的参数if (isNotEmpty(name) && isNotEmpty(value)) {if (hasParam) {query.append("&");} else {hasParam = true;}query.append(name).append("=").append(URLEncoder.encode(value, charset));}}return query.toString();
}private static String getResponseAsString(HttpURLConnection conn) throws IOException {String charset = getResponseCharset(conn.getContentType());if (conn.getResponseCode() < 400) {String contentEncoding = conn.getContentEncoding();if (CONTENT_ENCODING_GZIP.equalsIgnoreCase(contentEncoding)) {return getStreamAsString(new GZIPInputStream(conn.getInputStream()), charset);} else {return getStreamAsString(conn.getInputStream(), charset);}} else {// Client Error 4xx and Server Error 5xxthrow new IOException(conn.getResponseCode() + " " + conn.getResponseMessage());}
}private static String getStreamAsString(InputStream stream, String charset) throws IOException {try {Reader reader = new InputStreamReader(stream, charset);StringBuilder response = new StringBuilder();final char[] buff = new char[1024];int read = 0;while ((read = reader.read(buff)) > 0) {response.append(buff, 0, read);}return response.toString();} finally {if (stream != null) {stream.close();}}
}private static String getResponseCharset(String ctype) {String charset = CHARSET_UTF8;if (isNotEmpty(ctype)) {String[] params = ctype.split(";");for (String param : params) {param = param.trim();if (param.startsWith("charset")) {String[] pair = param.split("=", 2);if (pair.length == 2) {if (isNotEmpty(pair[1])) {charset = pair[1].trim();}}break;}}}return charset;
}private static boolean isNotEmpty(String value) {int strLen;if (value == null || (strLen = value.length()) == 0) {return false;}for (int i = 0; i < strLen; i++) {if ((Character.isWhitespace(value.charAt(i)) == false)) {return true;}}return false;
}

}

注:该示例是在沙箱环境下调用,获取的是沙箱中的数据。若要获取线上环境的数据,请填写自己创建应用获取过来的AppKey与AppSecret,并更改调用接口的环境地址为线上地址,同时使用线上淘宝账号获取授权SessionKey。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/419027.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

LeetCode 293. Flip Game

原题链接在这里&#xff1a;https://leetcode.com/problems/flip-game/description/ 题目&#xff1a; You are playing the following Flip Game with your friend: Given a string that contains only these two characters: and -, you and your friend take turns to flip…

Redis缓存,你真的懂了吗

为什么要用缓存&#xff08;缓存的优点、场景&#xff09; &#xff08;1&#xff09;在项目中缓存是如何使用的&#xff1f; 结合你自己项目的业务来&#xff0c;你如果用了那恭喜你&#xff0c;你如果没用那不好意思&#xff0c;你硬加也得加一个场景吧&#xff01; &…

Java sdk 调用淘宝开发平台

public static void main(String[] args) throws Exception { // TOP服务地址&#xff0c;正式环境需要设置为http://gw.api.taobao.com/router/rest String serverUrl “http://gw.api.tbsandbox.com/router/rest”; String appKey “test”; // 可替换为您的沙箱环境应用的…

编写一个函数func(),将此函数的输入参数(int型)逆序输出显示,如54321 – 12345,要求使用递归,并且函数体代码不超过8行...

public class Test{  //中间变量private String res "0";  //方法public int func(int i){if(i>0){int temp i%10;res resString.valueOf(temp);func(i/10);}return Integer.valueOf(res);}public static void main(String[] args){Test tnew Test();int a…

你会用Java实现两个大数相加吗

两个大数相加(Java)* 1、是整数&#xff1b;* 2、两个数无限大&#xff0c;long都装不下&#xff1b;* 3、不能用BigInteger&#xff1b;* 4、不能用任何包装类提供的运算方法&#xff1b;* 5、两个数都是以字符串的方式提供。 * 思路&#xff1a;* 字符串逐位相加&#xff0c;…

获取淘宝开发平台的sessionKey

淘宝API调用 申请 获取session key 在调用淘宝的API时&#xff0c;我们都会用到appkey,appsecret,appsession。 1、我们申请应用就会有appkey和appsecret了 2、正式环境下获取SessionKey 注意&#xff1a;web插件平台应用和web其它应用在正式环境下是同样的获取方法 1&…

PERL 实现微信登录

get 请求: https://login.weixin.qq.com/jslogin? appidwx782c26e4c19acffb &redirect_urihttps%3A%2F%2Fwx.qq.com%2Fcgi-bin%2Fmmwebwx-bin%2Fwebwxnewloginpage &funnew &langzh_CN &_1455501911998参数: _ 1455501911998 appid wx782…

安装git客户端

https://blog.csdn.net/sinat_16998945/article/details/81062278 https://blog.csdn.net/qq_38225558/article/details/86220668

SQL规范

一、三范式 1、 参考网址&#xff1a; http://www.cnblogs.com/linjiqin/archive/2012/04/01/2428695.html (1)&#xff0e;第一范式(确保每列保持原子性) (2)&#xff0e;第二范式(确保表中的每列都和主键相关) (3)&#xff0e;第三范式(确保每列都和主键列直接相关,而不是间接…

618小记

转载&#xff1a;https://www.zhihu.com/question/379688667/answer/1488971063 任何专业的开发者都应该明白&#xff0c;实现方法服从于功能需求&#xff0c;而功能需求体现在接口定义中。 所以&#xff0c;必须要先确定接口定义&#xff0c;然后才能开始实现&#xff0c;…

关于多条id相同,只取其中一条记录的sql语句

需要使用&#xff1a;分区函数用法(partition by 字段) select *,row_number() over(partition by item order by date ) as index from tab 分区索引 ------------------------------------------- SQL Server select * from (select * , row_number() over(partition by id …

TortoiseGit 客户端安装及使用

https://blog.csdn.net/sinat_16998945/article/details/81062278 https://www.cnblogs.com/xuwenjin/p/8573603.html

jstack命令使用

概述 jstack可用于导出java运用程序的线程堆栈。其基本使用语法为&#xff1a; jstack [-l] pid -l 选项用于打印锁的额外信息。使用演示样例 以下这段代码执行之后会出现死锁现象(由于线程1持有lock1。在等待lock2。线程2持有lock2在等待lock1&#xff0c;造成了循环等待。形成…

javascript for in,for each,for循环遍历区别

https://www.cnblogs.com/Youngly/p/6709546.html

如何从中级Java程序员过渡到高级Java程序员

1、https://www.zhihu.com/question/20300937 2、大厂的中间件技术岗位面&#xff08;https://blog.csdn.net/yunduo1/article/details/108454566&#xff09; 问题梳理&#xff1a; Linux的管道微服务的理解接口或者服务引入了新功能要更新发布&#xff0c;如何进行发布&…