mirror of https://github.com/certd/certd
36 lines
1.3 KiB
JavaScript
36 lines
1.3 KiB
JavaScript
var signer = require("./signer");
|
|
var https = require("https");
|
|
var sig = new signer.Signer();
|
|
//Set the AK/SK to sign and authenticate the request.
|
|
sig.Key = "QTWAOYTTINDUT2QVKYUC";
|
|
sig.Secret = "MFyfvK41ba2giqM7**********KGpownRZlmVmHc";
|
|
|
|
//The following example shows how to set the request URL and parameters to query a VPC list.
|
|
//Specify a request method, such as GET, PUT, POST, DELETE, HEAD, and PATCH.
|
|
//Set request host.
|
|
//Set request URI.
|
|
//Set parameters for the request URL.
|
|
var r = new signer.HttpRequest("GET", "endpoint.example.com/v1/77b6a44cba5143ab91d13ab9a8ff44fd/vpcs?limie=1");
|
|
//Add header parameters, for example, x-domain-id for invoking a global service and x-project-id for invoking a project-level service.
|
|
r.headers = { "Content-Type": "application/json" };
|
|
//Add a body if you have specified the PUT or POST method. Special characters, such as the double quotation mark ("), contained in the body must be escaped.
|
|
r.body = "";
|
|
|
|
var opt = sig.Sign(r);
|
|
console.log(opt.headers["X-Sdk-Date"]);
|
|
console.log(opt.headers["Authorization"]);
|
|
|
|
var req = https.request(opt, function (res) {
|
|
console.log(res.statusCode);
|
|
console.log("headers:", JSON.stringify(res.headers));
|
|
res.on("data", function (chunk) {
|
|
console.log(chunk.toString());
|
|
});
|
|
});
|
|
|
|
req.on("error", function (err) {
|
|
console.log(err.message);
|
|
});
|
|
req.write(r.body);
|
|
req.end();
|