0.4.0 • Published 10 years ago

truecaller_query v0.4.0

Weekly downloads
4
License
ISC
Repository
github
Last release
10 years ago

truecaller_query

A module which provides simple gateway to TrueCaller's query api

Basic Usage

// If you have parameters run it like that.
var TrueCaller = require('./index');
TrueCaller.setParameters("myNumber_PARAMATER","registerId_PARAMETER");

var whoIsThis = "905079999999";

TrueCaller.search(whoIsThis,function(err,data){
    console.log(err ? err : data); // your query result is here.
})

// # END



// If you dont have parameters, just run the code below and obtain one.
var TrueCaller = require('./index');
TrueCaller.register(function(err,data){
    console.log(err ? err : data); // your parameters is here.
});


// # END

Where to find myNumber and registerId parameters?

You have to proxy an Android or IOS device's TrueCaller requests and extract the parameters. (Recommended tool: Fiddler2), or you can see the instructions at the sample code.

Tests?

I have no time to write tests for this, please if you do give us some information.

0.4.0

10 years ago

0.3.0

10 years ago

0.2.2

10 years ago

0.2.0

10 years ago

0.1.1

10 years ago

0.1.0

10 years ago

0.0.6

10 years ago

0.0.5

10 years ago

0.0.4

10 years ago

0.0.3

10 years ago

0.0.2

10 years ago

0.0.1

10 years ago