You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
During the testing my app I found a problem with easyprocess. Let me describe it.
The purpose of my app is to accept the incoming call from one phone number (phone-number-1) to vox phone number (vox-phone-number) and to connect this call with another phone number (phone-number-2), so:
The VoxEngine.easyProcess(incomingCall, outgoingCall) works fine until I need to collect the information from both calls. The screenshot below shows the log output when phone-number-1 hangup the outgoing call.
incoming CallEvents.Disconnected comes first and I can extract the event data and pass it to my API inside the terminating event
Outgoing CallEvents.Failed with event data comes after I send a request to my API
NOTE: If I hangup phone-number-2, then I will be able to get outgoing event data but incoming event data comes after the terminating event
During the investigation I got the desired behavior, instead the following code
Hi there! Thx for the issue :)
Please take a look at my answer here - #4 (comment)
Your task is "out of scope" of the VoxEngine.easyProcess method, so there is no need to patch the source code.
But in your case the solution you provided is OK.
Hello,
During the testing my app I found a problem with easyprocess. Let me describe it.
The purpose of my app is to accept the incoming call from one phone number (
phone-number-1
) to vox phone number (vox-phone-number
) and to connect this call with another phone number (phone-number-2
), so:incoming call:
phone-number-1
->vox-phone-number
outgoing call:
vox-phone-number
->phone-number-2
The
VoxEngine.easyProcess(incomingCall, outgoingCall)
works fine until I need to collect the information from both calls. The screenshot below shows the log output whenphone-number-1
hangup the outgoing call.During the investigation I got the desired behavior, instead the following code
I use the following
The questions I have are pretty simple:
The text was updated successfully, but these errors were encountered: