UNPKG

517 BJavaScriptView Raw
1const union = require('../../island-union-sdk');
2
3const client = new union.suning.Client({
4 appKey: '********************************',
5 secretKey: '********************************'
6});
7
8client.execute('suning.netalliance.unioninfomation.get', { goodsCode: '000000012389328919' }).then(result => {
9 const goods = result[0];
10 console.log(`[*] 商品名称: ${goods.goodsName}`);
11 console.log(`[*] 商品封面: ${goods.pictureUrl}`);
12 console.log(`[*] 商品价格: ${goods.price}`);
13});
\No newline at end of file