File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -149,7 +149,7 @@ export class ApiClient {
149149 }
150150
151151 public callRefreshApi ( refreshDetails : Identity ) : Promise < RefreshResult > {
152- const url = this . _baseUrl + `/v2/token/refresh?version =${ this . _clientVersion } ` ;
152+ const url = this . _baseUrl + `/v2/token/refresh?client =${ this . _clientVersion } ` ;
153153 const req = new XMLHttpRequest ( ) ;
154154 this . _requestsInFlight . push ( req ) ;
155155 req . overrideMimeType ( 'text/plain' ) ;
@@ -242,7 +242,7 @@ export class ApiClient {
242242 subscription_id : opts . subscriptionId ,
243243 } ;
244244
245- const url = this . _baseUrl + `/v2/token/client-generate?version =${ this . _clientVersion } ` ;
245+ const url = this . _baseUrl + `/v2/token/client-generate?client =${ this . _clientVersion } ` ;
246246 const req = new XMLHttpRequest ( ) ;
247247 this . _requestsInFlight . push ( req ) ;
248248 req . overrideMimeType ( 'text/plain' ) ;
You can’t perform that action at this time.
0 commit comments