You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
vartineye=require('tineye'),client=newtineye('publicKey','privateKey');// Let's search for an image by it's URLvarimagePath='http://www.tineye.com/images/meloncat.jpg';client.search(imagePath,function(err,results){console.dir(results);// Look at all those cat pictures!});// Now let's check on how many API requests we have leftclient.remaining(function(err,results){console.dir(results);});// Lastly, let's see how many images tineye has in it's indexclient.count(function(err,results){console.dir(results);});