ali-top-sdk
v0.0.1
Published
Taobao Open API Client.
Downloads
5
Readme
ali-top-client
alibaba top client
Quick Examples
TopClient = require( 'ali-top-sdk' ).TopClient;
var client = new TopClient({
'appkey' : 'appkey' ,
'appsecret' : 'secret' ,
'REST_URL' : 'gw.api.taobao.com/router/rest '
});
client.execute( 'alibaba.aliqin.fc.sms.num.send' , {
'extend' : '123456' ,
'sms_type' : 'normal' ,
'sms_free_sign_name' : '阿里大鱼' ,
'sms_param' : '{\"code\":\"1234\",\"product\":\"alidayu\"}' ,
'rec_num' : '13000000000' ,
'sms_template_code' : 'SMS_585014'
}, function(error, response) {
if (!error) console.log(response);
else console.log(error);
});