GithubHelp home page GithubHelp logo

node-incandescent-client's Introduction

node-incandescent-client

A client for the Incadescent (http://incandescent.xyz/) reverse image search API

Installation

npm install node-incandescent-client

Usage

Please see example.js for a complete flow example.

var incan_client = require("node-incandescent-client").client;

var client = new incan_client(YOUR_UID, YOUR_API_KEY);

client.addImageUrl('http://incandescent.xyz/wp-content/themes/twentyfifteen/logo.png');

client.assemble();

client.sendRequest(function(projectId) { 
	console.log(projectId);

	client.getResults(projectId, function(data) {
		console.log(data);
	})
});

new client(uid, apiKey)

Creates a new client for the Incandescent API, using the passed UID and API key to sign requests.

client.addImageUrl(imageUrl)

Adds an image URL to the current request for lookup. Note that you can add several image URLs for lookup in the same request

client.assemble(secondsToExpiration)

Assembles the request for lookup. Note that this is called after (one or more) calls to client.addImageUrl, and client.assemble generates the required authentication front-matter for the request. secondsToExpiration is an optional Number parameter between 0 and 1200 which specifies the maximum time between the client.assemble call and the client.sendRequest call.

client.sendRequest(onProjectCreation)

Sends the client.assemble'd request to the Incandescent API. Consumes a callback, onProjectCreation, which will be called with the projectId returned by Incandsecent for the search request.

client.getResults(projectId, onResults)

Using the passed projectId (presumably generated using a call to client.sendRequest), query the Incandescent result server every few seconds until the search is complete, passing the raw response data (according to the format specified by http://incandescent.xyz/docs/) to the onResults callback.

node-incandescent-client's People

Contributors

aaronhammond avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.