@@ -92,6 +92,7 @@ function get(config, pathname, proxy, agent, callback, encoding) {
92
92
}
93
93
94
94
if ( encoding !== "binary" ) {
95
+ options . headers [ "X-WPT-API-KEY" ] = this . config . key ;
95
96
options . headers [ "accept-encoding" ] = "gzip,deflate" ;
96
97
options . headers [ "User-Agent" ] = "WebpagetestNodeWrapper/v0.6.0" ;
97
98
}
@@ -338,9 +339,10 @@ function getTestBalance(options, callback) {
338
339
options = options === callback ? undefined : options ;
339
340
340
341
var query = helper . setQuery ( mapping . commands . testBalance , options ) ;
341
- if ( ! query . k && this . config . key ) {
342
- query . k = this . config . key ;
343
- }
342
+ // API key (to pass with the parans) (depricated)
343
+ // if (!query.k && this.config.key) {
344
+ // query.k = this.config.key;
345
+ // }
344
346
return api . call ( this , paths . testBalance , callback , query , options ) ;
345
347
}
346
348
@@ -366,10 +368,10 @@ function runTest(what, options, callback) {
366
368
// json output format
367
369
query . f = "json" ;
368
370
369
- // API key
370
- if ( ! query . k && this . config . key ) {
371
- query . k = this . config . key ;
372
- }
371
+ // API key (to pass with the parans) (depricated)
372
+ // if (!query.k && this.config.key) {
373
+ // query.k = this.config.key;
374
+ // }
373
375
374
376
// synchronous tests with results
375
377
var testId ,
0 commit comments