May I monitor and save data such phone call drops, phone call quality
up vote
0
down vote
favorite
I'm testing an app for monitoring phone calls quality, but seems that even using CallKit or CallTelephony I cannot save data such length of the call , audio quality, or if the call drops.
In the end, seems I cannot measure this things, am I right?
yet checked here and relative documentations, could someone give me confirmation?
ios callkit core-telephony
add a comment |
up vote
0
down vote
favorite
I'm testing an app for monitoring phone calls quality, but seems that even using CallKit or CallTelephony I cannot save data such length of the call , audio quality, or if the call drops.
In the end, seems I cannot measure this things, am I right?
yet checked here and relative documentations, could someone give me confirmation?
ios callkit core-telephony
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I'm testing an app for monitoring phone calls quality, but seems that even using CallKit or CallTelephony I cannot save data such length of the call , audio quality, or if the call drops.
In the end, seems I cannot measure this things, am I right?
yet checked here and relative documentations, could someone give me confirmation?
ios callkit core-telephony
I'm testing an app for monitoring phone calls quality, but seems that even using CallKit or CallTelephony I cannot save data such length of the call , audio quality, or if the call drops.
In the end, seems I cannot measure this things, am I right?
yet checked here and relative documentations, could someone give me confirmation?
ios callkit core-telephony
ios callkit core-telephony
edited 5 hours ago
Moritz
56.8k19131184
56.8k19131184
asked yesterday
biggreentree
44821022
44821022
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
up vote
0
down vote
From everything I've seen, you're definitely not going to be able to get that information at this point. It's just not part of the plugins and likely not something the OS allows third-party applications to access.
New contributor
add a comment |
up vote
0
down vote
You can monitor the call Duration by using CallKit
, but you can't monitor audio quality. Also you will never get the phone number of the given call. You will only get the unique id for given call, and callbacks which gives the detail of given call that call get connected, disconnected, kept on hold etc. So based on connected and disconnected status - you can measure the call duration.
ok, so you are saying that I can monitor when a call is closed via CallKit? even if it is a non VOIP one? I cannot get info about monitoring a phone call via call kit, could you help me?
– biggreentree
5 hours ago
1
yes, even if you are having non-VOIP app, you can monitor calls start, end, etc. you can check for this 'CXCallObserverDelegate' and 'CXCallObserver' for the same. The method in this delegate is going to be called when state of any call get changed. First try to do by yourself. If you are unable to do then let me know, i will surely help you.
– Mehul Thakkar
5 hours ago
add a comment |
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
From everything I've seen, you're definitely not going to be able to get that information at this point. It's just not part of the plugins and likely not something the OS allows third-party applications to access.
New contributor
add a comment |
up vote
0
down vote
From everything I've seen, you're definitely not going to be able to get that information at this point. It's just not part of the plugins and likely not something the OS allows third-party applications to access.
New contributor
add a comment |
up vote
0
down vote
up vote
0
down vote
From everything I've seen, you're definitely not going to be able to get that information at this point. It's just not part of the plugins and likely not something the OS allows third-party applications to access.
New contributor
From everything I've seen, you're definitely not going to be able to get that information at this point. It's just not part of the plugins and likely not something the OS allows third-party applications to access.
New contributor
New contributor
answered yesterday
Beau Burchfield
212
212
New contributor
New contributor
add a comment |
add a comment |
up vote
0
down vote
You can monitor the call Duration by using CallKit
, but you can't monitor audio quality. Also you will never get the phone number of the given call. You will only get the unique id for given call, and callbacks which gives the detail of given call that call get connected, disconnected, kept on hold etc. So based on connected and disconnected status - you can measure the call duration.
ok, so you are saying that I can monitor when a call is closed via CallKit? even if it is a non VOIP one? I cannot get info about monitoring a phone call via call kit, could you help me?
– biggreentree
5 hours ago
1
yes, even if you are having non-VOIP app, you can monitor calls start, end, etc. you can check for this 'CXCallObserverDelegate' and 'CXCallObserver' for the same. The method in this delegate is going to be called when state of any call get changed. First try to do by yourself. If you are unable to do then let me know, i will surely help you.
– Mehul Thakkar
5 hours ago
add a comment |
up vote
0
down vote
You can monitor the call Duration by using CallKit
, but you can't monitor audio quality. Also you will never get the phone number of the given call. You will only get the unique id for given call, and callbacks which gives the detail of given call that call get connected, disconnected, kept on hold etc. So based on connected and disconnected status - you can measure the call duration.
ok, so you are saying that I can monitor when a call is closed via CallKit? even if it is a non VOIP one? I cannot get info about monitoring a phone call via call kit, could you help me?
– biggreentree
5 hours ago
1
yes, even if you are having non-VOIP app, you can monitor calls start, end, etc. you can check for this 'CXCallObserverDelegate' and 'CXCallObserver' for the same. The method in this delegate is going to be called when state of any call get changed. First try to do by yourself. If you are unable to do then let me know, i will surely help you.
– Mehul Thakkar
5 hours ago
add a comment |
up vote
0
down vote
up vote
0
down vote
You can monitor the call Duration by using CallKit
, but you can't monitor audio quality. Also you will never get the phone number of the given call. You will only get the unique id for given call, and callbacks which gives the detail of given call that call get connected, disconnected, kept on hold etc. So based on connected and disconnected status - you can measure the call duration.
You can monitor the call Duration by using CallKit
, but you can't monitor audio quality. Also you will never get the phone number of the given call. You will only get the unique id for given call, and callbacks which gives the detail of given call that call get connected, disconnected, kept on hold etc. So based on connected and disconnected status - you can measure the call duration.
answered 6 hours ago
Mehul Thakkar
8,52063662
8,52063662
ok, so you are saying that I can monitor when a call is closed via CallKit? even if it is a non VOIP one? I cannot get info about monitoring a phone call via call kit, could you help me?
– biggreentree
5 hours ago
1
yes, even if you are having non-VOIP app, you can monitor calls start, end, etc. you can check for this 'CXCallObserverDelegate' and 'CXCallObserver' for the same. The method in this delegate is going to be called when state of any call get changed. First try to do by yourself. If you are unable to do then let me know, i will surely help you.
– Mehul Thakkar
5 hours ago
add a comment |
ok, so you are saying that I can monitor when a call is closed via CallKit? even if it is a non VOIP one? I cannot get info about monitoring a phone call via call kit, could you help me?
– biggreentree
5 hours ago
1
yes, even if you are having non-VOIP app, you can monitor calls start, end, etc. you can check for this 'CXCallObserverDelegate' and 'CXCallObserver' for the same. The method in this delegate is going to be called when state of any call get changed. First try to do by yourself. If you are unable to do then let me know, i will surely help you.
– Mehul Thakkar
5 hours ago
ok, so you are saying that I can monitor when a call is closed via CallKit? even if it is a non VOIP one? I cannot get info about monitoring a phone call via call kit, could you help me?
– biggreentree
5 hours ago
ok, so you are saying that I can monitor when a call is closed via CallKit? even if it is a non VOIP one? I cannot get info about monitoring a phone call via call kit, could you help me?
– biggreentree
5 hours ago
1
1
yes, even if you are having non-VOIP app, you can monitor calls start, end, etc. you can check for this 'CXCallObserverDelegate' and 'CXCallObserver' for the same. The method in this delegate is going to be called when state of any call get changed. First try to do by yourself. If you are unable to do then let me know, i will surely help you.
– Mehul Thakkar
5 hours ago
yes, even if you are having non-VOIP app, you can monitor calls start, end, etc. you can check for this 'CXCallObserverDelegate' and 'CXCallObserver' for the same. The method in this delegate is going to be called when state of any call get changed. First try to do by yourself. If you are unable to do then let me know, i will surely help you.
– Mehul Thakkar
5 hours ago
add a comment |
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53265846%2fmay-i-monitor-and-save-data-such-phone-call-drops-phone-call-quality%23new-answer', 'question_page');
}
);
Post as a guest
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password