This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"meta": { | |
"code": 401, | |
"error_message": "Invalid API Key.", | |
"error_type": "InvalidCredentials" | |
}, | |
"data": {} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"meta": { | |
"code": 409, | |
"error_message": "slug: dhl tracking_number: 2185849691 is already exist.", | |
"error_type": "InvalidArgument" | |
}, | |
"data": { | |
"tracking": { | |
"slug": "dhl", | |
"tracking_number": "2185849691" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"meta": { | |
"code": 500, | |
"error_message": "The server is down for maintenance.", | |
"error_type": "ServerMaintenance" | |
}, | |
"data": {} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"tracking_number": "906587618687:DA15BU", | |
"title": "906587618687", | |
"origin_country_iso3": null, | |
"destination_country_iso3": null, | |
"shipment_package_count": 0, | |
"created_at": "2014-06-25T09:26:26+00:00", | |
"active": false, | |
"order_id": null, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"meta": { | |
"code": 200 | |
}, | |
"data": { | |
"tracking": { | |
"tracking_number": "RA123456543HK", | |
"slug": "hong-kong-post" | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var exec = require('child_process').exec; | |
var fs = require('fs'); | |
var util = require('util'); | |
var http = require('http'); | |
var url = require('url'); | |
var PDFDocument = require('pdfkit'); // http://pdfkit.org/ | |
http.createServer(function (req, res) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"meta": { | |
"code": 200 | |
}, | |
"data": { | |
"total": 2, | |
"couriers": [ | |
{ | |
"slug": "dhl", | |
"name": "DHL", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"meta": { | |
"code": 200 | |
}, | |
"data": { | |
"total": 190, | |
"couriers": [ | |
{ | |
"slug": "india-post-int", | |
"name": "India Post International", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"meta": { | |
"code": 200 | |
}, | |
"data": { | |
"total": 2, | |
"couriers": [ | |
{ | |
"slug": "fedex", | |
"name": "FedEx", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"tracking": | |
{ | |
"tracking_number": "906587618687", | |
"tracking_postal_code": "DA15BU", | |
"tracking_ship_date": "20131231", | |
"tracking_account_number": "1234567890", | |
"slug": ["dhl","ups","fedex"] | |
} |
OlderNewer