This commit is contained in:
Ramya Rao 2020-07-27 09:03:04 -07:00 коммит произвёл GitHub
Родитель 2448af1659
Коммит 6d9d1079d3
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 8 добавлений и 8 удалений

Просмотреть файл

@ -45,13 +45,13 @@ MsRest.interactiveLogin((err, credentials) => {
### For azure-graph sdk
One needs to set the tokenAudience to 'graph' and provide the tenantId in the options object.
One needs to set the tokenAudience to 'https://graph.windows.net' and provide the tenantId in the options object.
```javascript
const AzureGraphClient = require('azure-graph');
const MsRestAzure = require('ms-rest-azure');
const options = {
tokenAudience: 'graph',
tokenAudience: 'https://graph.windows.net',
domain: '<tenantId>'
};
@ -191,13 +191,13 @@ MsRest.loginWithServicePrincipalSecret(
### For azure-graph sdk
One needs to set the tokenAudience to 'graph' and provide the tenantId in the options object.
One needs to set the tokenAudience to 'https://graph.windows.net' and provide the tenantId in the options object.
```javascript
const AzureGraphClient = require('azure-graph');
const MsRestAzure = require('ms-rest-azure');
const options = {
tokenAudience: 'graph',
tokenAudience: 'https://graph.windows.net',
domain: '<tenantId>'
};

Просмотреть файл

@ -21,13 +21,13 @@ npm install azure-graph
// It provides a url and code that needs to be copied and pasted in a browser and authenticated over there. If successful,
// the user will get a DeviceTokenCredentials object.
//Note: You need to explicitly specify the tokenAudience as graph and the your domain (tenantId) in which the AD Graph exists.
//Note: You need to explicitly specify the tokenAudience as https://graph.windows.net and the your domain (tenantId) in which the AD Graph exists.
// This needs to be done only for working graph clients. For other ARM clients specifying this information is not required.
var tenantId='abcd-efgh-ijk-lmno-12345';
// Enter your tenant ID here which can be found from your Azure AD URL
// Eg. https://manage.windowsazure.com/example.com#Workspaces/ActiveDirectoryExtension/Directory/<TenantId>/users
msRestAzure.interactiveLogin({ tokenAudience: 'graph', domain: tenantId }, function (err, credentials, subscriptions) {
msRestAzure.interactiveLogin({ tokenAudience: 'https://graph.windows.net', domain: tenantId }, function (err, credentials, subscriptions) {
if (err) console.log(err);
var client = new graphRbacManagementClient(credentials, tenantId);
var userParams = {
@ -64,7 +64,7 @@ npm install azure-graph
// Enter your tenant ID here which can be found from your Azure AD URL
// Eg. https://manage.windowsazure.com/example.com#Workspaces/ActiveDirectoryExtension/Directory/<TenantId>/users
msRestAzure.loginWithUsernamePassword('username@contosocorp.onmicrosoft.com', 'your-password', { tokenAudience: 'graph', domain: tenantId }, function (err, credentials, subscriptions) {
msRestAzure.loginWithUsernamePassword('username@contosocorp.onmicrosoft.com', 'your-password', { tokenAudience: 'https://graph.windows.net', domain: tenantId }, function (err, credentials, subscriptions) {
if (err) console.log(err);
var client = new graphRbacManagementClient(credentials, tenantId);
var userParams = {
@ -101,7 +101,7 @@ npm install azure-graph
// Enter your tenant ID here which can be found from your Azure AD URL
// Eg. https://manage.windowsazure.com/example.com#Workspaces/ActiveDirectoryExtension/Directory/<TenantId>/users
msRestAzure.loginWithServicePrincipalSecret('clientId', 'application-secret', tenantId, { tokenAudience: 'graph' }, function (err, credentials, subscriptions) {
msRestAzure.loginWithServicePrincipalSecret('clientId', 'application-secret', tenantId, { tokenAudience: 'https://graph.windows.net' }, function (err, credentials, subscriptions) {
if (err) console.log(err);
var client = new graphRbacManagementClient(credentials, tenantId);
var userParams = {