API签名指南-JavaScript:API调用(Node.js)

时间:2024-07-19 18:47:19

API调用(Node.js)

  1. 在命令行中,用npm安装“moment”和“moment-timezone”模块。

    1
    2
    npm install moment --save
    npm install moment-timezone --save
    

  2. 在工程中引入signer.js。

    1
    2
    var signer = require('./signer')
    var https = require('https')
    

  3. 生成一个新的Signer,填入AK和SK。

    1. 本示例以AK和SK保存在环境变量中为例,运行本示例前请先在本地环境中设置环境变量HUAWEICLOUD_SDK_AK和HUAWEICLOUD_SDK_SK。以Linux系统为例在本地将已获取的AK/SK设置为环境变量。
      1. 打开终端,输入以下命令打开环境变量配置文件。

        vi ~/.bashrc

      2. 设置环境变量,保存文件并退出编辑器。
        export HUAWEICLOUD_SDK_AK="已获取AK值" 
        export HUAWEICLOUD_SDK_SK="已获取SK值" 
      3. 输入以下命令使配置文件生效。

        source ~/.bashrc

    2. 生成一个新的Signer,填入已设置的环境变量。
      1
      2
      3
      4
      5
      var sig = new signer.Signer()
      // Directly writing AK/SK in code is risky. For security, encrypt your AK/SK and store them in the configuration file or environment variables.
      // In this example, the AK/SK are stored in environment variables for identity authentication. Before running this example, set environment variables HUAWEICLOUD_SDK_AK and HUAWEICLOUD_SDK_SK.
      sig.Key = process.env.HUAWEICLOUD_SDK_AK
      sig.Secret = process.env.HUAWEICLOUD_SDK_SK
      

  4. 生成一个新的Request,指定 域名 、方法名、请求uri和body。

    1
    2
    3
    4
    5
    //The following example shows how to set the request URL and parameters to query a VPC list.
    var r = new signer.HttpRequest("GET", "service.region.example.com/v1/77b6a44cba5143ab91d13ab9a8ff44fd/vpcs?limie=1");
    
    //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 = '';
    

  5. 添加需要签名的其他头域,或者其他用途的头域,如多项目场景中添加X-Project-Id,或者全局服务场景中添加X-Domain-Id。

    1
    2
    //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 = {"X-Project-Id": "xxx"};
    

  6. 进行签名,执行此函数会生成请求参数,用于创建https请求,请求参数中添加了用于签名的X-Sdk-Date头和Authorization头。

    1
    var opt = sig.Sign(r)
    

  7. 访问API,查看访问结果。

     1
     2
     3
     4
     5
     6
     7
     8
     9
    10
    11
    var req = https.request(opt, function(res){
            console.log(res.statusCode)  
            res.on("data",	function(chunk){
    		console.log(chunk.toString())
    	})
    })
    req.on("error",function(err){
    	console.log(err.message)
    })
    req.write(r.body)
    req.end()
    

support.huaweicloud.com/devg-apisign/api-sign-sdk-nodejs.html