azure-mgmt-authorization
v0.9.0-pre.6
Published
Microsoft Azure Authorization Management Client Library for node
Readme
Microsoft Azure SDK for Node.js - Authorization
This project provides a Node.js package for accessing the Azure PAS. Right now it supports:
- Node.js version: 0.6.15 or higher
- **API version: **
Features
How to Install
npm install azure-authorizationHow to Use
Authentication
Create the Authorization client
var fs = require("fs"),
common = require("azure-common"),
authorizationManagement = require("azure-authorization");
var authorizationManagementClient = authorizationManagement.createAuthorizationManagementClient(new common.TokenCloudCredentials({
subscriptionId: "<your subscription id>",
token: "<your token here>"
}));