Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
tineye-api
Advanced tools
tineye-api is the official Node.js library for the TinEye API. The TinEye API is TinEye's paid reverse image search solution for professional, commercial or high-volume users. See https://api.tineye.com/ for more information.
Install the latest version of the library using npm:
$ npm install tineye-api
After installation, require
the library to start using it:
var TinEye = require('tineye-api')
Now that you've required the library, you can use it to create an instance of the API object.
var api = new TinEye('https://api.tineye.com/rest/', <public_key>, <private_key>);
Be sure to populate public_key
and private_key
with your own keys. You can test your code
with our API sandbox keys, but
you won't get real search results until you start using your real keys.
Once you have an api
object, you can start searching. You can submit an image using either an
image URL or by submitting image data
by uploading an image file. You can also check the number of remaining searches
in your account or check the number of images in the TinEye index.
var url = 'https://tineye.com/images/meloncat.jpg';
var params = {
'offset': 0,
'limit': 10,
'sort': 'score',
'order': 'desc'
};
api.searchUrl(url, params)
.then(function(response) {
console.log(response);
})
.catch(function(error) {
console.log(error);
});
var img = fs.readFileSync('/Users/Mypath/image.jpg');
var params = {
'offset': 0,
'limit': 10,
'sort': 'size',
'order': 'asc'
};
api.searchData(img, params)
.then(function(response) {
console.log(response);
})
.catch(function(error) {
console.log(error);
});
api.remainingSearches()
.then(function(response) {
console.log(response);
})
.catch(function(error) {
console.log(error);
});
api.imageCount()
.then(function(response) {
console.log(response);
})
.catch(function(error) {
console.log(error);
});
git
folder from .gitignore
searchUrl
and searchData
now take an option arrayFAQs
TinEye API node.js library
The npm package tineye-api receives a total of 0 weekly downloads. As such, tineye-api popularity was classified as not popular.
We found that tineye-api 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
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.