Security News
PyPI’s New Archival Feature Closes a Major Security Gap
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
@testlio/discovered-request
Advanced tools
Helper library for making requests through discovery.
It will make discovery request to get the location of the resource you want to call and then call it. Library uses request-promise to make actual http requests. All the request options (except 'servicePath' and 'api') are the same as in request-promise. For more information how to build your request look at request-promise.
##Installation
npm install @testlio/discovered-request
Lets call resource browsers
in service named browser
and at version 1. ServicePath: browser.v1.browsers
'use strict';
const request = require('@testlio/discovered-request');
const options = {
servicePath: 'browser.v1.browsers',
headers: {
'Authorization': 'Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJtYXJ0QHRlc3RsaW8uY29tIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWV9.tMRlQfy2e1I0kfqrSJraPbBqgGnmIVrXj8ks-WBEJLg'
},
json: true
};
request(options).then((result) => {
console.log(result);
}).catch((err) => {
console.log('Request failed');
console.log(err);
});
'use strict';
const request = require('@testlio/discovered-request');
const options = {
url: 'http://testlio.com'
};
request(options).then((result) => {
console.log(result);
}).catch((err) => {
console.log('Request failed');
console.log(err);
});
Returns the result of the resource discovery request of the specified service and version.
'use strict';
const request = require('@testlio/discovered-request');
const options = {
servicePath: 'browser.v1',
json: true,
headers: {
Authorization: 'Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJtYXJ0QHRlc3RsaW8uY29tIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWV9.tMRlQfy2e1I0kfqrSJraPbBqgGnmIVrXj8ks-WBEJLg'
}
};
request(options).then((result) => {
console.log(result);
}).catch((err) => {
console.log('Request failed');
console.log(err);
});
Use the api
option to change the base API location. If api
is undefined then the default value is used instead (currently set to https://api.testlio.com
'use strict';
const request = require('@testlio/discovered-request');
const options = {
api: 'http://local.testlio',
servicePath: 'browser.v1.browsers',
headers: {
'Authorization': 'Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJtYXJ0QHRlc3RsaW8uY29tIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWV9.tMRlQfy2e1I0kfqrSJraPbBqgGnmIVrXj8ks-WBEJLg'
},
json: true
};
request(options).then((result) => {
console.log(result);
}).catch((err) => {
console.log('Request failed');
console.log(err);
});
If your environment doesn't support new Promise
you need to define promise dependency by yourself.
const request = require('@testlio/discovered-request');
request.setPromisesDependency(require('Bluebird'));
FAQs
Helper library for making http requests through discovery
We found that @testlio/discovered-request demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
Research
Security News
Malicious npm package postcss-optimizer delivers BeaverTail malware, targeting developer systems; similarities to past campaigns suggest a North Korean connection.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.