0.9.0-pre.6 • Published 9 years ago

azure-mgmt-authorization v0.9.0-pre.6

Weekly downloads
37
License
-
Repository
github
Last release
9 years ago

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-authorization

How 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>"
}));

Related projects