UNPKG

n8n-nodes-dataforseo

Version:

DataForSEO is an SEO and marketing data provider, empowering businesses with invaluable insights via APIs and databases.

19 lines 767 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.dataForSeoRequest = dataForSeoRequest; async function dataForSeoRequest(ef, options) { const credentials = await ef.getCredentials('dataForSeoApi'); const baseUrl = 'https://api.dataforseo.com/v3'; const requestOptions = { method: options.method ? options.method : 'POST', headers: { 'Accept': 'application/json', 'Authorization': 'Basic ' + btoa(credentials.apiLogin + ':' + credentials.apiPassword), }, body: options.body ? options.body : null, url: baseUrl + options.url, json: true, }; return await ef.helpers.httpRequest(requestOptions); } //# sourceMappingURL=dataForSeoRequest.js.map