Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
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
If you were using any version of the TinEye API library before 2.0.0
, you will need
to make minor changes to your code.
The API object is now instantiated using a single key, api_key
. The value
of this key is the same as your previous private_key
. The public key is no
longer used.
// Sandbox key
// Note that this is the same value as the old private_key
var apiKey = "6mm60lsCNIB,FwOWjJqA80QZHh9BMwc-ber4u=t^";
var api = new TinEye("https://api.tineye.com/rest/", apiKey);
// Sandbox keys
var publicKey = "LCkn,2K7osVwkX95K4Oy";
var privateKey = "6mm60lsCNIB,FwOWjJqA80QZHh9BMwc-ber4u=t^";
var api = new TinEye("https://api.tineye.com/rest/", publicKey, privateKey);
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/", "yourApiKey");
Be sure to populate api_key
with your own key. 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
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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.