GithubHelp home page GithubHelp logo

sumithemmadi / truecallerjs Goto Github PK

View Code? Open in Web Editor NEW
437.0 10.0 90.0 2.68 MB

TruecallerJS: This is a library for retrieving phone number details using the Truecaller API.

Home Page: http://truecaller.js.org/

License: MIT License

JavaScript 17.62% TypeScript 82.38%
truecallerjs truecaller search-number caller-name caller caller-lookup npm-package nodejs phone-number xml phone yaml name jsontoxml search number mobile google javascript json2xml

truecallerjs's Introduction

TruecallerJS

NPM version GIT Stars Download GitHub Sponsors LICENSE Maintenance Issues

Welcome to TruecallerJS! This is a library for retrieving phone number details using the Truecaller API. It provides a simple and convenient way to access information about phone numbers in your Node.js, JavaScript, and TypeScript projects.

Description

TruecallerJS is built to simplify the process of fetching phone number details. With this library, you can easily integrate Truecaller functionality into your Node.js, JavaScript, and TypeScript applications. It abstracts the complexities of interacting with the Truecaller API and provides a streamlined interface for fetching and processing phone number information.

Features

  • Phone Number Lookup: Retrieve detailed information about a phone number, including the owner's name, location, and more.

  • Support for Node.js, JavaScript, and TypeScript: TruecallerJS can be used in Node.js projects, as well as in JavaScript and TypeScript applications.

  • Simple and Lightweight: TruecallerJS is designed to be easy to use and lightweight.

Table of Contents

Installation

You can install TruecallerJS using npm:

npm install truecallerjs

To use TruecallerJS from the command line

npm install -g truecallerjs

Note: If you are using a version of truecallerjs that is older than 1.1.2, we recommend referring to the truecallerjs-v1.1.2 documentation for instructions. Note: If you are using truecallerjs version from 1.1.3 to 1.1.5, please refer to the truecallerjs-v1.1.5 documentation for instructions.

Command Line Usage

To use TruecallerJS from the command line, you can run the truecallerjs command followed by the desired options and arguments.

Here are some examples of the available options:

  • truecallerjs login: Use this command to log in to your Truecaller account.

  • truecallerjs -s [number]: Use this command to search for a phone number and retrieve the caller name and related information.

  • truecallerjs --bulksearch, --bs command is used to performing bulk number searches using the Truecaller service. It allows you to search for multiple phone numbers at once, making it convenient for processing large sets of phone numbers in a single request.

  • truecallerjs --bulksearch, --bs: Use this command to perform a bulk number search.

  • Additional options include --raw, --name, --email, --json, --xml, --yaml, --text, --nc, --installationid, --verbose, and --help.

For example:

~$ truecallerjs -s +9199123456789 --json
{
     ...
     "name":"Sumith Emmadi"
     ...
}

~$ truecallerjs -s +9199123456789 --name
Name : Sumith Emmadi

Example for bulk search

truecallerjs --bulksearch <phone_number_1>,<phone_number_2>,<phone_number_3>,...,<phone_number_n>

Replace <phone_number_1>, <phone_number_2>, ..., <phone_number_n> with the actual phone numbers you want to search. Separate each phone number with a comma.

 ~$ truecallerjs --bs 9912345678,+14051234567,+919987654321

Note : If the country code is not specified for a phone number, it will default to using your own country code.

Limitations

Please note the following limitations when using the --bulksearch option:

  1. Maximum Number of Phone Numbers: The tool supports searching 30 or fewer phone numbers at once in a single request. If you exceed this limit, you may need to split your input into multiple requests.

  2. Formatting: Ensure that the phone numbers are correctly formatted and do not contain any additional characters or spaces. The tool expects the phone numbers to be provided in a comma-separated format.

Usage

To use the project, start by installing the truecallerjs package via npm:

npm install truecallerjs

Simple Example

Here's a basic example of how to perform a normal search for a phone number:

import truecallerjs, { SearchData, Format } from "truecallerjs";

async function performTruecallerSearch(): Promise<void> {
  const searchData: SearchData = {
    number: "9912345678",
    countryCode: "IN",
    installationId: "a1k07--Vgdfyvv_rftf5uuudhuhnkljyvvtfftjuhbuijbhug",
  };

  try {
    const response: Format = await truecallerjs.search(searchData);
    console.log(response.json());

    // Additional response methods:
    // console.log(response.xml());
    // console.log(response.yaml());
    // console.log(response.text());

    // Example of available data from the response:
    console.log(response.getName()); // "Sumith Emmadi"
    console.log(response.getAlternateName()); // "sumith"
    console.log(response.getAddresses()); // {....}
    console.log(response.getEmailId()); // [email protected]
    console.log(response.getCountryDetails()); // {...}
  } catch (error) {
    console.error("Error occurred:", error);
  }
}

performTruecallerSearch();

In the above example, the truecallerjs package is used to search for a phone number. The search_data object contains the necessary parameters, including the number, country code, and installation ID. The response from the truecallerjs.search() function provides various methods to access the returned data.

Note : Make sure to log in using the truecallerjs login command and obtain your installation ID using the truecallerjs -i command.

Bulk Search on Multiple Phone Numbers

The truecallerjs package also supports bulk search on multiple phone numbers:

import truecallerjs, { BulkSearchData, Format } from "truecallerjs";

async function performBulkTruecallerSearch(): Promise<void> {
  const countryCode: string = "IN";
  const installationId: string = "a1k07--Vgdfyvv_rftf5uuudhuhnkljyvvtfftjuhbuijbhug";
  const phoneNumbers: string = "+9912345678,+14051234567,+919987654321";

  try {
    const response: BulkSearchData = await truecallerjs.bulkSearch(phoneNumbers, countryCode, installationId);
    console.log(response);
  } catch (error) {
    console.error("Error occurred:", error);
  }
}

performBulkTruecallerSearch();

In this example, the truecallerjs.bulkSearch() function is used to perform bulk searches on multiple phone numbers. The phoneNumbers parameter should contain the phone numbers separated by commas. The countryCode and installationId parameters are used to specify the default country code and installation ID, respectively.

Note : Make sure to log in using the truecallerjs login command and obtain your installation ID using the truecallerjs -i command.

For more details and additional functionalities, please refer to the documentation, including the process for logging in and obtaining the installation ID.

Disclaimer

The truecallerjs tool is not an official Truecaller product. It is a custom script developed by Sumith Emmadi, and its functionality is dependent on the Truecaller service. Please use this tool responsibly and in compliance with the terms of service of Truecaller.

For more information and support, please contact Sumith Emmadi at [email protected] .

Contributing

Contributions to the truecallerjs are not only welcome but highly encouraged!

  1. Fork this repository git clone https://github.com/sumithemmadi/truecallerjs.git
  2. Create a new branch for your contribution.
  3. Add your content in the appropriate folder or create a new file.
  4. Commit your changes and push them to your forked repository.
  5. Open a pull request, explaining the nature of your contribution.

Please note that all contributions should align with the spirit of the repository and be suitable for all audiences. Offensive or inappropriate content will not be accepted.

License

TruecallerJS is open source and licensed under the MIT License. See the LICENSE file for more information.

๐Ÿ’ Sponsor and support me

If you find my project helpful or inspiring, consider supporting me through GitHub Sponsors. Your sponsorship helps me dedicate more time and effort to open source development and creating impactful projects.

โค๏ธ Sponsor me on github

Buy Me a Coffee at ko-fi.com

sumithemmadi

๐Ÿ’– Sponsors

Sponsors

  • I want to extend my sincere gratitude to all my sponsors for their generous support.

Acknowledgments

Thank you for choosing TruecallerJS! I hope it helps you retrieve phone number details efficiently.

Repository: https://github.com/sumithemmadi/truecallerjs.git

truecallerjs's People

Contributors

dependabot[bot] avatar sumithemmadi avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

truecallerjs's Issues

Invalid phone number

Hello,

We used to be able to input a JSON file from Android app to login. That functionality now appears to be gone.

Instead, we try to use a phone number, but it is rejected, giving a very long error stack:

Enter your phone number : +1XXXXXXXXXX (US phone number)

file:///usr/local/lib/node_modules/truecallerjs/node_modules/axios/lib/core/settle.js:19
    reject(new AxiosError(
           ^
AxiosError: Request failed with status code 400
    at settle (file:///usr/local/lib/node_modules/truecallerjs/node_modules/axios/lib/core/settle.js:19:12)
    at Unzip.handleStreamEnd (file:///usr/local/lib/node_modules/truecallerjs/node_modules/axios/lib/adapters/http.js:570:11)
    at Unzip.emit (node:events:526:35)
    at endReadableNT (node:internal/streams/readable:1376:12)
    at process.processTicksAndRejections (node:internal/process/task_queues:82:21) {
  code: 'ERR_BAD_REQUEST',
  config: {
    transitional: {
      silentJSONParsing: true,
      forcedJSONParsing: true,
      clarifyTimeoutError: false
    },
    adapter: [ 'xhr', 'http' ],
    transformRequest: [ [Function: transformRequest] ],
...
 _currentUrl: 'https://account-asia-south1.truecaller.com/v2/sendOnboardingOtp',
        [Symbol(kCapture)]: false
      },
      [Symbol(kCapture)]: false,
      [Symbol(kBytesWritten)]: 0,
      [Symbol(kNeedDrain)]: false,
      [Symbol(corked)]: 0,
      [Symbol(kOutHeaders)]: [Object: null prototype] {
        accept: [ 'Accept', 'application/json, text/plain, */*' ],
        'content-type': [ 'Content-Type', 'application/json; charset=UTF-8' ],
        'accept-encoding': [ 'accept-encoding', 'gzip' ],
        'user-agent': [ 'user-agent', 'Truecaller/11.75.5 (Android;10)' ],
        clientsecret: [ 'clientsecret', 'lvc22mp3l1sfv6ujg83rd17btt' ],
        'content-length': [ 'Content-Length', '380' ],
        host: [ 'Host', 'account-asia-south1.truecaller.com' ]
      },
      [Symbol(errored)]: null,
      [Symbol(kHighWaterMark)]: 16384,
      [Symbol(kRejectNonStandardBodyWrites)]: false,
      [Symbol(kUniqueHeaders)]: null
    },
    data: { status: 40003, message: 'Invalid phone number' }

Any idea why this may be? Android app login still works.

Request failed with status code 426

$ truecallerjs -s +9199123456789 --json
{
  "message": "Request failed with status code 426",
  "name": "AxiosError",
  "stack": "AxiosError: Request failed with status code 426\n    at settle (file:///usr/local/lib/node_modules/truecallerjs/node_modules/axios/lib/core/settle.js:19:12)\n    at Unzip.handleStreamEnd (file:///usr/local/lib/node_modules/truecallerjs/node_modules/axios/lib/adapters/http.js:572:11)\n    at Unzip.emit (node:events:523:35)\n    at endReadableNT (node:internal/streams/readable:1367:12)\n    at process.processTicksAndRejections (node:internal/process/task_queues:82:21)",
  "config": {
    "transitional": {
      "silentJSONParsing": true,
      "forcedJSONParsing": true,
      "clarifyTimeoutError": false
    },
    "adapter": "http",
    "transformRequest": [
      null
    ],
    "transformResponse": [
      null
    ],
    "timeout": 0,
    "xsrfCookieName": "XSRF-TOKEN",
    "xsrfHeaderName": "X-XSRF-TOKEN",
    "maxContentLength": -1,
    "maxBodyLength": -1,
    "env": {},
    "headers": {
      "Accept": "application/json, text/plain, */*",
      "Content-Type": "application/json; charset=UTF-8",
      "accept-encoding": "gzip",
      "user-agent": "Truecaller/11.75.5 (Android;10)",
      "Authorization": "Bearer XXX"
    },
    "params": {
      "q": "99123456789",
      "countryCode": "IN",
      "type": 4,
      "locAddr": "",
      "placement": "SEARCHRESULTS,HISTORY,DETAILS",
      "encoding": "json"
    },
    "method": "get",
    "url": "https://search5-noneu.truecaller.com/v2/search"
  },
  "code": "ERR_BAD_REQUEST",
  "status": 426
}

401 error

Keep getting this json response when searching for a number:

{
  "responseStatus": "error",
  "errorResp": "Request failed with status code 401",
  "data": "null"
}

Unable to login, with both file and otp

When I tried to login with file

$ truecallerjs login ./my-truecaller-data-1671312322082.json

I receive the error:

TypeError: Cannot read properties of undefined (reading 'installations')
    at start_truecallerjs (/usr/lib/node_modules/truecallerjs/bin/index.js:425:42)
    at Object.<anonymous> (/usr/lib/node_modules/truecallerjs/bin/index.js:612:1)
    at Module._compile (node:internal/modules/cjs/loader:1155:14)
    at Object.Module._extensions..js (node:internal/modules/cjs/loader:1209:10)
    at Module.load (node:internal/modules/cjs/loader:1033:32)
    at Function.Module._load (node:internal/modules/cjs/loader:868:12)
    at Function.executeUserEntryPoint [as runMain] (node:internal/modules/run_main:81:12)
    at node:internal/main/run_main_module:22:47

When I tried otp method, I have same problem with issue n7

error with login

when I put my number it appear the following:
file:///usr/local/lib/node_modules/truecallerjs/node_modules/axios/lib/core/AxiosError.js:89
AxiosError.call(axiosError, error.message, code, config, request, response);
^
AxiosError: read ECONNRESET
at AxiosError.from (file:///usr/local/lib/node_modules/truecallerjs/node_modules/axios/lib/core/AxiosError.js:89:14)
at RedirectableRequest.handleRequestError (file:///usr/local/lib/node_modules/truecallerjs/node_modules/axios/lib/adapters/http.js:591:25)
at RedirectableRequest.emit (node:events:513:28)
at eventHandlers. (/usr/local/lib/node_modules/truecallerjs/node_modules/follow-redirects/index.js:14:24)
at ClientRequest.emit (node:events:513:28)
at TLSSocket.socketErrorListener (node:_http_client:496:9)
at TLSSocket.emit (node:events:513:28)
at emitErrorNT (node:internal/streams/destroy:151:8)
at emitErrorCloseNT (node:internal/streams/destroy:116:3)
at process.processTicksAndRejections (node:internal/process/task_queues:82:21) {

Node.js v18.13.0

Error

Bro there is an error
When i am using this command
truecallerjs -s +91********

message : Request failed with status code 426
name : AxiosError
stack : AxiosError: Request failed with status code 426
at settle (file:///data/data/com.termux/files/usr/lib/node_modules/truecallerjs/node_modules/axios/lib/core/settle.js:19:12)
at Unzip.handleStreamEnd (file:///data/data/com.termux/files/usr/lib/node_modules/truecallerjs/node_modules/axios/lib/adapters/http.js:572:11)
at Unzip.emit (node:events:523:35)
at endReadableNT (node:internal/streams/readable:1367:12)
at process.processTicksAndRejections (node:internal/process/task_queues:82:21)
config :
transitional :
silentJSONParsing : true
forcedJSONParsing : true
clarifyTimeoutError : false
adapter : http
transformRequest : null
transformResponse : null
timeout : 0
xsrfCookieName : XSRF-TOKEN
xsrfHeaderName : X-XSRF-TOKEN
maxContentLength : -1
maxBodyLength : -1
env : {}
headers :
Accept : application/json, text/plain, /
Content-Type : application/json; charset=UTF-8
accept-encoding : gzip
user-agent : Truecaller/11.75.5 (Android;10)
Authorization : Bearer a1i0v--i8kwv0-CV5IhmESSnwZF68UUwCB7g4TIrKToHzesVErv36k1c-6ykaFOG
params :
q : *********
countryCode : IN
type : 4
locAddr :
placement : SEARCHRESULTS,HISTORY,DETAILS
encoding : json
method : get
url : https://search5-noneu.truecaller.com/v2/search
code : ERR_BAD_REQUEST
status : 426

.

It's don't work on my termux how can I do regester on Truecaller

Otp error

I have something error when the otp call come
The call hung up fast before say any word
Maybe bcz my number start with +20?

Cannot read properties of undefined (reading '0')

when i use command for example:
truecallerjs -s 527607844 -n
or
truecallerjs -s 527607844
or even
truecallerpy -s 527607844

after 47 tries its return
Cannot read properties of undefined (reading '0'). or Expecting value: line 1 column 1 (char 0).

i think that the problem from truecaller server which had a limit for phone number lookup, can you help to exceed the limit i search for truecaller api every where but the have nothing for js or python im looking to pay per search ...

not installing

chaturxxxx@chaturxxxx-Inspiron-5567:~/truecallerjs$ npm install truecallerjs

up to date, audited 464 packages in 2s

71 packages are looking for funding
run npm fund for details

Query

please add a feacher that we can search phone numbers using name

Need documentation For Login & get installation id

Need documentation For Login & get installation id

like this

const truecallerjs = require('truecallerjs');

var searchData = {
number: "[PHONE_NUMBER]",
countryCode: "[COUNTRY_CODE]",
installationId: "[INSTALLATION_ID]"
}

var sn = truecallerjs.searchNumber(searchData);
sn.then(function(response) {
console.log(response)
});

How many numbers Can See

Hi, Is there any limit from truecaller for looking a mobile number details via this package using node on a single installation id?

Showing Error

{
"responseStatus": "error",
"errorResp": "Request failed with status code 426",
"data": "null"
}

"I have also tried logging in again but showing same error"

getting error while importing

[nodemon] restarting due to changes...
[nodemon] starting node truecaller.js
node:internal/errors:490
ErrorCaptureStackTrace(err);
^

Error [ERR_MODULE_NOT_FOUND]: Cannot find module 'C:\Users\DELL\Desktop\New folder\md\node_modules\truecallerjs\src\index' imported from C:\Users\DELL\Desktop\New folder\md\node_modules\truecallerjs\index.js
at new NodeError (node:internal/errors:399:5)
at finalizeResolution (node:internal/modules/esm/resolve:326:11)
at moduleResolve (node:internal/modules/esm/resolve:945:10)
at defaultResolve (node:internal/modules/esm/resolve:1153:11)
at nextResolve (node:internal/modules/esm/loader:163:28)
at ESMLoader.resolve (node:internal/modules/esm/loader:838:30)
at ESMLoader.getModuleJob (node:internal/modules/esm/loader:424:18)
at ModuleWrap. (node:internal/modules/esm/module_job:77:40)
at link (node:internal/modules/esm/module_job:76:36) {
code: 'ERR_MODULE_NOT_FOUND'
}

Node.js v18.15.0
[nodemon] app crashed - waiting for file changes before starting...

getting this error. even i installed package correctly

and this is the code

import truecallerjs from 'truecallerjs';

console.log('searching')
const phoneNumber = '+918080000000';

truecallerjs.search(phoneNumber)
.then(response => {
console.log(response);
})
.catch(error => {
console.error(error);
});
console.log("done")

This error just appeared today. Request failed with status code 426 AxiosError AxiosError: Request failed with status code 426

I don't know what happened yesterday it was fine now there's this error:

message             : Request failed with status code 426
name                : AxiosError
stack               : AxiosError: Request failed with status code 426
    at settle (file:///usr/local/lib/node_modules/truecallerjs/node_modules/axios/lib/core/settle.js:19:12)
    at Unzip.handleStreamEnd (file:///usr/local/lib/node_modules/truecallerjs/node_modules/axios/lib/adapters/http.js:570:11)
    at Unzip.emit (node:events:526:35)
    at endReadableNT (node:internal/streams/readable:1376:12)
    at process.processTicksAndRejections (node:internal/process/task_queues:82:21)
config              : 
transitional        : 
silentJSONParsing   : true
forcedJSONParsing   : true
clarifyTimeoutError : false
adapter             : xhr, http
transformRequest    : null
transformResponse   : null
timeout             : 0
xsrfCookieName      : XSRF-TOKEN
xsrfHeaderName      : X-XSRF-TOKEN
maxContentLength    : -1
maxBodyLength       : -1
env                 : {}
headers             : 
Accept              : application/json, text/plain, */*
content-type        : application/json; charset=UTF-8
accept-encoding     : gzip
user-agent          : Truecaller/11.75.5 (Android;10)
params              : 
locAddr             : 
placement           : SEARCHRESULTS,HISTORY,DETAILS
encoding            : json
method              : get
url                 : https://search5-noneu.truecaller.com/v2/search
code                : ERR_BAD_REQUEST
status              : 426

Error: Back up found [ status : 17 ]

I get this error while login using truecallerjs:

{"status":17,"message":"Back up found","userId":9104xxxxxx53472,"requestId":"12422xxxxxxxxxxxf0d0","backupTime":1636871584101}

And I get this while I login using official TrueCaller app:

photo_2023-07-24_11-03-49

not generating otp

sir i want to generate otp and process for installation id through my website how to do that
can you provide me api and any other information with code.

You have exceeded the limit of verification attempts. Please try again after some time.

Hi,
I success to login once and i get the "Backup Found".
I read that i need to remove the connect to google and disable backup.

I did all there steps and i tried again..

But now i get the error:

Sending OTP to +972502118551.
You have exceeded the limit of verification attempts.
Please try again after some time.

What should i do?

(I tried to remove the app in the android phone and install again. But the error is the same)

Getting backup found after entering otp.

I am working on Android Termux, and it was working properly one time, but suddenly when I tried after three days to login again. And when I tried to enter my otp, the message was "backup found". So how to take backup in termux for truecallerjs.

And by the way, truecallerjs is an amazing package, which I found during learning duration, and it was also useful before when there was not having any issue with me...

Thank you ! Have a nice day there...

No OTP received

I tried to run the following command truecallerjs login in order to get the OTP code, but I'm receiving a phone call verification each time instead of an OTP code.

I'm using a phone number inside Egypt.

UPDATE: I tried older versions (1.1.2 & 1.1.5) and had the same issue, even though login with the JSON file didn't work, it throws an exception, I think because the installation id is no longer exist in the JSON file.

ERROR : Request failed with status code 401

Hello .. I would like to thank you for the effort made in this application..
I'm facing a problem that when I search for a number I get this Error , Also when I review my installation ID it shows "Undefined"
Note : I have a premium(Paid) version of truecaller

getting error

Hey I am getting the following error

{
    "responseStatus": "error",
    "errorResp": "Request failed with status code 429",
    "data": "null"
}

ERROR : Request failed with status code 451

As the title says I'm unable to login.... by using OTP I get this error:
data: {
status: 45101,
message: 'Unavailable for legal reasons',
domain: 'eu'
}
By using alternative method with .json file on number lookup I get "ERROR : Request failed with status code 451"

I think it has something to do with Truecaller's EU tokens...because I logged in succesful by using Asian phone number token of a friend. but on italian phone number lookup the result is:

data :
id : 4hVlep08gyBufaUI0hhPFw==
access : PUBLIC
enhanced : true
phones :
e164Format : +39320XXXXXXX
numberType : MOBILE
nationalFormat : 320 XXX XXXX
dialingCode : 39
countryCode : IT
carrier : Wind Tre S.p.A.
type : openPhone
addresses :
countryCode : IT
type : address
internetAddresses : []
badges : []
tags : []
cacheTtl : 86400000
sources : []
searchWarnings : []
surveys :
id : 100
frequency : 3600
passthroughData : eyAiMyI6ICIzOTMyMDk3MzQ4NTYiIH0=
perNumberCooldown : 7890000
id : b6588ff4-47cb-46ce-8b11-015199c1f729
frequency : 3600
passthroughData : eyAiMyI6ICIzOTMyMDk3MzQ4NTYiIH0=
perNumberCooldown : 7890000
commentsStats :
showComments : false
ns : 100
provider : ss-nu
stats :
sourceStats : []

I get just carrier info, looks like the "data" field containing the name is missing...

Rate limit

Hello there i wanted to enquire if there are rate limits per a logged in account ?

i'm unable to generate installation ID with browser request

Sir I want to know to generate installation ID with GUI tool , mean hit link By POST Request and send OTP than verify and get My installation id.

can you teach me how can achive that .

When We hit That API than we get this Response:
data: { status: 40001, message: 'Invalid body format' }

I have requested Like This :
method: 'post', url: 'https://account-asia-south1.truecaller.com/v2/sendOnboardingOtp', data: '{"countryCode":142,"dialingCode":356,"installationDetails":{"app":{"buildVersion":7,"majorVersion":12,"minorVersion":7,"store":"GOOGLE_PLAY"},"device":{"deviceId":"uqss8ajpzw1nf20z","language":"en","manufacturer":"Realme","model":"Redmi 9A","osName":"Android","osVersion":"10","mobileServices":["GMS"]},"language":"en"},"phoneNumber":917000000002,"region":"region-2","sequenceNo":2}' },

Client must be upgraded

Today i am facing new error

{"status":42601,"message":"Client must be upgraded"}

It was working fine till 8PM today

Can you tell what is the exact limit per Installation ID

Can you tell what is the exact limit per Installation ID?
i have tried in many ways but true-caller is restricted my installation id for less than 100 numbers
Could you please suggest me how to achieve minimum 10000 numbers per day in any manner

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.