npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

sf-express-sdk

v1.2.0

Published

sf-express sdk

Downloads

113

Readme

sf-express-sdk

(顺丰快递接口)丰桥服务平台部分接口实现、npm package

使用方法

  1. npm包安装
npm install sf-express-sdk
  1. 丰桥官网申请API接入,获取:客户编码、校验码、调用地址

  2. 覆盖代码中的 <客户编码>, <校验码>, <调用地址>

API列表

配置

/**
 * @apiDescription 创建SF
 * @apiName new SF
 *
 * @apiParam {String} clientCode 客户编码
 * @apiParam {String} checkWord 校验码
 * @apiParam {String} [url=http://bsp-oisp.sf-express.com/bsp-oisp/sfexpressService] 调用地址
 */
const SF = require('sf-express-sdk');
const sf = new SF({
	clientCode: '<客户编码>',
	checkWord: '<校验码>',
	url: '<调用地址>'
});

下单

/**
 * @apiDescription 下单
 * @apiName OrderService
 * @apiSuccessExample {json} Success-Response:
 * {
 * 	"OrderResponse": {
 * 		"filter_result": "2",
 * 		"destcode": "539",
 * 		"mailno": "444010688260",
 * 		"origincode": "532",
 * 		"orderid": "0002",
 * 		"rls_info": {
 * 			"rls_errormsg": "444010688260:",
 * 			"invoke_result": "OK",
 * 			"rls_code": "1000",
 * 			"rls_detail": {
 * 				"waybillNo": "444010688260",
 * 				"sourceCityCode": "532",
 * 				"destCityCode": "539",
 * 				"destDeptCode": "539AE",
 * 				"destTransferCode": "539W",
 * 				"destRouteLabel": "539AE",
 * 				"proName": "顺丰标快",
 * 				"cargoTypeCode": "C201",
 * 				"limitTypeCode": "T4",
 * 				"expressTypeCode": "B1",
 * 				"codingMapping": "21",
 * 				"xbFlag": "0",
 * 				"printFlag": "000000000",
 * 				"twoDimensionCode": "MMM={'k1':'539W','k2':'539AE','k3':'','k4':'T4','k5':'444010688260','k6':'','k7':'36f4e170'}",
 * 				"proCode": "T4",
 * 				"printIcon": "00000000"
 * 			}
 * 		}
 * 	}
 * }
 *
 * @apiErrorExample {json} Error-Response:
 * { code: '8119', text: '月结卡号不存在或已失效' }
 */

const createOrderOpts = {
	"orderid": "0002",
	"is_docall": 1,
	"sendstarttime": "2019-06-14 11:30:00",
	"express_type": "1",
	"j_company": "西瓜の公司",
	"j_contact": "大西瓜",
	"j_tel": "15842345665",
	"j_province": "山东省",
	"j_city": "青岛市",
	"j_qu": "崂山区",
	"j_address": "丽达广场对面",
	"d_company": "菠萝の公司",
	"d_contact": "大菠萝",
	"d_tel": "15544456578",
	"d_province": "山东省",
	"d_city": "临沂市",
	"d_qu": "兰山区",
	"d_address": "金雀山路齐鲁大厦",
	"pay_method": "1",
	"custid": "7551234567",
	"daishou": "0",
	"things": "小笼包",
	"things_num": "1",
	"remark": "精密仪器,小心轻拿轻放~",
}
sf.OrderService(createOrderOpts).then(function(result) {
	console.log(JSON.stringify(result))
}).catch(function(err) {
	console.log(err)
})

订单过滤

/**
 * @apiDescription 订单过滤
 * @apiName OrderFilterService
 * @apiSuccessExample {json} Success-Response:
 * {"OrderFilterResponse":{"filter_result":"1","orderid":"0002"}}
 *
 * @apiErrorExample {json} Error-Response:
 * {"code":"8028","text":"客户未配置此业务"}
 */

const filterOpts = {
 "search_orderid":"0002",
 "search_d_address":"金雀山路齐鲁大厦",
 "search_d_tel":"15544456578",
 "search_j_custid":"7551234567",
 "search_j_address":"丽达广场对面",
 "search_j_tel":"15842345665"
}
sf.OrderFilterService(filterOpts).then(function(result){
 console.log(JSON.stringify(result))
}).catch(function(err) {
 console.log(err)
})

订单查询

/**
 * @apiDescription 订单查询
 * @apiName OrderSearchService
 * @apiSuccessExample {json} Success-Response:
 *   {
 *   	"OrderResponse": {
 *   		"filter_result": "2",
 *   		"destcode": "539",
 *   		"mailno": "444010688260",
 *   		"origincode": "532",
 *   		"orderid": "0002"
 *   	}
 *   }
 *
 * @apiErrorExample {json} Error-Response:
 *   {"code":"6150","text":"找不到该订单"}
 */

sf.OrderSearchService('0002').then(function(result) {
	console.log(JSON.stringify(result))
}).catch(function(err) {
	console.log(err)
})

路由信息查询(根据顺丰运单号)

/**
 * @apiDescription 路由信息查询
 * @apiName RouteService
 * @apiParam {String} tracking_number 查询号
 * @apiParam {Number} [tracking_type=1] 查询号类别:1:根据顺丰运单号查询;2:根据客户订单号查询;3:逆向单,根据客户原始订单号查询
 * @apiParam {Number} [method_type=1] 路由查询类别1:标准路由查询;2:定制路由查询
 * @apiSuccessExample {json} Success-Response:
 *   {
 *   	"RouteResponse": {
 *   		"mailno": "444010688260",
 *   		"orderid": "0002",
 *   		"Route": [{
 *   			"remark": "顺丰速运 已收取快件(测试数据)",
 *   			"accept_time": "2018-05-01 08:01:44",
 *   			"accept_address": "广东省深圳市软件产业基地",
 *   			"opcode": "50"
 *   		}, {
 *   			"remark": "已签收,感谢使用顺丰,期待再次为您服务(测试数据)",
 *   			"accept_time": "2018-05-02 12:01:44",
 *   			"accept_address": "广东省深圳市软件产业基地",
 *   			"opcode": "80"
 *   		}]
 *   	}
 *   }
 *
 * @apiErrorExample {json} Error-Response:
 *   { code: '0001', text: '客户订单号不能为空' }
 *
 */
// 路由信息查询(根据顺丰运单号)
sf.RouteService({tracking_number: '444010688260'}).then(function(result) {
	console.log(JSON.stringify(result))
}).catch(function(err) {
	console.log(err)
})

路由信息查询(根据客户订单号)

/**
 * @apiDescription 路由信息查询(根据客户订单号)
 * @apiName RouteServiceByOrderId
 * @apiSuccessExample {json} Success-Response:
 *   {
 *   	"RouteResponse": {
 *   		"mailno": "444010688260",
 *   		"orderid": "0002",
 *   		"Route": [{
 *   			"remark": "顺丰速运 已收取快件(测试数据)",
 *   			"accept_time": "2018-05-01 08:01:44",
 *   			"accept_address": "广东省深圳市软件产业基地",
 *   			"opcode": "50"
 *   		}, {
 *   			"remark": "已签收,感谢使用顺丰,期待再次为您服务(测试数据)",
 *   			"accept_time": "2018-05-02 12:01:44",
 *   			"accept_address": "广东省深圳市软件产业基地",
 *   			"opcode": "80"
 *   		}]
 *   	}
 *   }
 *
 * @apiErrorExample {json} Error-Response:
 *   { code: '0002', text: '顺丰运单号不能为空' }
 *
 */

sf.RouteServiceByOrderId('0002').then(function(result) {
	console.log(JSON.stringify(result))
}).catch(function(err) {
	console.log(err)
})

取消订单

/**
 * @apiDescription 订单取消
 * @apiName OrderConfirmService
 * @apiParam {String} orderid 客户订单号
 * @apiParam {Number} dealtype 客户订单操作标识:1:确认;2:取消
 * @apiSuccessExample {json} Success-Response:
 * {"OrderConfirmResponse":{"res_status":"2","orderid":"0002"}}
 *
 * @apiErrorExample {json} Error-Response:
 *   {"code":"8019","text":"订单已确认或已消单"}
 *
 */

sf.OrderConfirmService({
	orderid: '0002',
	dealtype: 2
}).then(function(result) {
	console.log(JSON.stringify(result))
}).catch(function(err) {
	console.log(err)
})
/**
 * @apiDescription 取消订单
 * @apiName OrderConfirmServiceCancel
 * @apiParam {String} orderid 客户订单号
 * @apiSuccessExample {json} Success-Response:
 *   {"OrderConfirmResponse":{"res_status":"2","orderid":"0002"}}
 *
 * @apiErrorExample {json} Error-Response:
 *   { code: '0012', text: '参数错误:orderid=' }
 *
 */

sf.OrderConfirmServiceCancel('0002').then(function(result) {
	console.log(JSON.stringify(result))
}).catch(function(err) {
	console.log(err)
})