Skip to content

Commit

Permalink
Merge 1dca49b into 24ffcd5
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosscastro committed Nov 20, 2018
2 parents 24ffcd5 + 1dca49b commit abb4b4d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions packages/app/main/src/services/azureAuthWorkflowService.ts
Expand Up @@ -128,7 +128,9 @@ export class AzureAuthWorkflowService {
`state=${state}`,
`client-request-id=${requestId}`,
`nonce=${nonce}`,
'resource=https://microsoft.onmicrosoft.com/9e536215-caa4-4136-8af3-fd4c8963359b'
'x-client-SKU=Js',
'x-client-Ver=1.0.17',
'resource=https://management.core.windows.net/'
];

if (renew) {
Expand Down Expand Up @@ -169,7 +171,7 @@ export class AzureAuthWorkflowService {
`client_id=${clientId}`,
`code=${code}`,
`redirect_uri=${redirectUri}`,
`resource=https://microsoft.onmicrosoft.com/9e536215-caa4-4136-8af3-fd4c8963359b`
`resource=https://management.core.windows.net/`
];
const data = bits.join('&');
let armToken: { access_token: string, refresh_token: string, error?: string };
Expand Down

0 comments on commit abb4b4d

Please sign in to comment.