Socket
Socket
Sign inDemoInstall

@warerebel/azurerestauth

Package Overview
Dependencies
0
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @warerebel/azurerestauth

Node module to provide Azure REST API shared key authorization headers


Version published
0
Maintainers
1
Created
Weekly downloads
 

Readme

Source

Build Status Coverage Status

Introduction

Node module to generate Azure shared key authorization strings for using the REST API.

Getting Started

Call the constructor with the storage account name and the shared key that will be used to sign requests to the REST API. Call getAuthHeaderValue with the http request options and the Authorization header value will be returned.

Javascript

const azureRestAuth = require("@warerebel/azurerestauth");

let myAzureRestAuth = new azureRestAuth.AzureSign("account name", "Shared key");

let httpOptions = {
    method: "GET",
    protocol: "https:",
    host: "testsite.blob.core.windows.net",
    path: "/container01/tmp.txt",
    headers: {
                "x-ms-version": "2015-07-08",
                "x-ms-client-request-id": "9251fa41-0ca4-4558-84ac-44ab027b8f1e",
                "x-ms-date": "Tue, 05 Jul 2016 06:48:26 GMT"
            },
}

 let authString = myAzureRestAuth.getAuthHeaderValue(httpOptions);

 httpOptions.headers.Authorization = authString;

Typescript

import {AzureSign, HttpOptions} from "@warerebel/azurerestauth";

let myAzureRestAuth = new AzureSign("account name", "Shared key");

let httpOptions: HttpOptions = {
    method: "GET",
    protocol: "https:",
    host: "testsite.blob.core.windows.net",
    path: "/container01/tmp.txt",
    headers: {
                "x-ms-version": "2015-07-08",
                "x-ms-client-request-id": "9251fa41-0ca4-4558-84ac-44ab027b8f1e",
                "x-ms-date": "Tue, 05 Jul 2016 06:48:26 GMT"
            },
}

let authString = myAzureRestAuth.getAuthHeaderValue(httpOptions);

if(!httpOptions.headers)
  httpOptions.headers = {};
httpOptions.headers.Authorization = authString;  

Build and Test

Install dependencies with: npm install

Run tests with: npm test

Generate coverage with: npm run coverage

Compatibility

Compatible with Azure REST API versions 2014-02-14 and later

Keywords

FAQs

Last updated on 27 Jun 2021

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc