Questions tagged [caller-id]

Caller ID (CID), also called calling line identification (CLID), is a telephone feature which provides a caller's telephone information to a called party.

Caller ID (CID), also called calling line identification (CLID), is a telephone feature which provides a caller's telephone information to a called party.

Caller ID information may not be accurate and is often spoofed.

A similar protocol is Automatic Number Identification (ANI). ANI is used by telcos for services and billing purposes. Unlike CID which is inaccurate, ANI is accurate. Unfortunately ANI is not available to subscribers and consumers.

49 questions
18
votes
2 answers

Getting the caller ID in Android 9

I have been using the following code in a BroadcastReceiver to get the caller ID of incoming calls: @Override public void onReceive(Context aContext, Intent aIntent) { String action = aIntent.getAction(); if (action==null) return; if…
haris
  • 481
  • 4
  • 9
10
votes
3 answers

How to get Caller ID in C#?

I want to use 56K modem for getting telephone number of who calls the home phone. Is there a way to achieve this with C# ?
zer0w1dthspace
  • 1,042
  • 2
  • 17
  • 34
6
votes
0 answers

Is there an official, data-protected way to show caller-id information on the current Phone app, during a phone call?

Background I've found an interesting article and github repository that shows that it's possible to let the Phone app to show caller-id information of people, during a phone call, so I'm wondering if that's the official way to do it, or something…
android developer
  • 114,585
  • 152
  • 739
  • 1,270
6
votes
5 answers

How does "Phone" app show information of contacts that are not on the address book?

Background In the "Phone" app of Google, there is an option "Caller ID & spam" : So, if you get a call from someone or some organization that isn't on the address book, yet it is identified somehow, you get a name for it, as such (called…
android developer
  • 114,585
  • 152
  • 739
  • 1,270
4
votes
1 answer

In Android, make Caller ID notification visually appear on screen when there is incoming call?

We are working on an app which can recognize the name of the incoming call from the phone number. (Our problem is similar to this one but the solution is different) We have created a CallScreeningService which receives the phone number of the…
3
votes
2 answers

Alternatives to READ_CALL_LOG for accessing a caller's number?

Due to recent policy changes, it's very difficult to gain permission to use the READ_CALL_LOG permission on Google Play. Our app searches for the incoming caller's number in our app and if there is a match, show Caller ID information inputted in our…
3
votes
1 answer

Is there a way to block No Caller ID with Call Directory Extension in iOS?

I am working on a custom Phone dialer app for iOS. My idea is to create a good experience by being able to block No Caller ID phone call with Call Directory Extension. Currently on iOS there is no way to block unknown caller, except by turning on Do…
Miki
  • 903
  • 7
  • 26
2
votes
0 answers

Twilio setting CallerId for outbound transferred calls

I want to set up a system where if a transferred call is not answered, it is moved back into a queue so that someone else can grab it. I have the basics of catching the Dial status and then redirecting no-answer calls back to the queue. My struggle…
Progone
  • 236
  • 1
  • 5
2
votes
0 answers

How to Display a Pop-up Notification during an Incoming Call on Android

I want to show the name of a caller during an incoming call. For this, I'm creating a notification. The notification is delivered in the notifications with the name of the person. I want the notification to pop up and display the name. I've already…
Lav Shinde
  • 182
  • 2
  • 17
2
votes
1 answer

How can I get the phone calling number in my Java application?

I am developing a Java application to get the phone calling number. I'm using a USRobotics 5639 modem (caller ID capable) and I do have the caller id service from my phone company. When I use hyperterminal, I get the number, time and date of the…
user10260981
2
votes
1 answer

Is it possible to set the caller id (CID/CLID) to Blocked in RingOut?

I'm using the RingCentral RingOut API and I'm wondering if I can block the caller ID? The RingOut API only shows the phoneNumber property in the request format but RingCentral Online Account Portal can block the caller ID. Is there a way to do…
Grokify
  • 15,092
  • 6
  • 60
  • 81
2
votes
4 answers

Convert Caller ID format when using USR5637 modem?

I need to develop small utility to convert one format of Caller ID to other one. I have got US Robotics 56K USB Modem that supports Caller ID also my service provider (BT) enabled Caller ID feature for my line (number shows on handset). I have…
zbora23
  • 141
  • 1
  • 2
  • 11
1
vote
0 answers

CallerID Extension error 'Couldn’t communicate with a helper application'

My Application has the caller ID extension added and it is working fine in ios 14 and below. But with iOS 15 and above following method returns Couldn’t communicate with a helper application error. [CXCallDirectoryManager.sharedInstance…
1
vote
0 answers

What values are returned for callerID once I issue AT+VCID=2 AT command?

Many modems such as USRobotics or Conexant CX930xx need to issue the following command so I can retrieve the incomming call phone number (caller Id): AT+VCID=1 But according to the manuals above will recieve the callerId in formatted form. But I…
Dimitrios Desyllas
  • 9,082
  • 15
  • 74
  • 164
1
vote
1 answer

Web application landline caller id using js

I am currently working on an application for which it would be very useful to automatically identify the phone number of a landline call made to a specific phone. After some research, I have found a few packages (e.g npm caller-id-node) which seem…
Desperados
  • 434
  • 5
  • 13
1
2 3 4