File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ For example if you'd like to ensure the user can acquire tokens silently for the
54
54
var request = {
55
55
scopes: [" Mail.Read" ],
56
56
account: currentAccount,
57
- forceRefresh: true
57
+ forceRefresh: true ,
58
58
refreshTokenExpirationOffsetSeconds: 7200 // 2 hours * 60 minutes * 60 seconds = 7200 seconds
59
59
};
60
60
@@ -89,7 +89,7 @@ var currentAccount = msalInstance.getAccountByUsername(username);
89
89
var silentRequest = {
90
90
scopes: [" Mail.Read" ],
91
91
account: currentAccount,
92
- forceRefresh: false
92
+ forceRefresh: false ,
93
93
cacheLookupPolicy: CacheLookupPolicy .Default // will default to CacheLookupPolicy.Default if omitted
94
94
};
95
95
@@ -119,8 +119,8 @@ var currentAccount = msalInstance.getAccountByUsername(username);
119
119
var silentRequest = {
120
120
scopes: [" Mail.Read" ],
121
121
account: currentAccount,
122
- forceRefresh: false
123
- cacheLookupPolicy: cacheLookupPolicy .Default // will default to CacheLookupPolicy.Default if omitted
122
+ forceRefresh: false ,
123
+ cacheLookupPolicy: CacheLookupPolicy .Default // will default to CacheLookupPolicy.Default if omitted
124
124
};
125
125
126
126
var request = {
You can’t perform that action at this time.
0 commit comments