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
Copy file name to clipboardExpand all lines: README.md
+4-3Lines changed: 4 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -63,13 +63,14 @@ Below are the callback paths:
63
63
64
64
## Ngrok
65
65
66
-
A simple way to set up a local callback URL for testing is to use the free tool [ngrok](https://ngrok.com/).
66
+
A simple way to set up a local callback URL for testing is to use the free tool [ngrok](https://ngrok.com/).
67
67
After you have downloaded and installed `ngrok` run the following command to open a public tunnel to your port (`$LOCAL_PORT`)
68
68
69
69
```sh
70
70
ngrok http $LOCAL_PORT
71
71
```
72
72
73
-
You can view your public URL at `http://127.0.0.1:4040` after ngrok is running. You can also view the status of the tunnel and requests/responses here.
73
+
You can view your public URL at `http://127.0.0.1:4040` after ngrok is running. You can also view the status of the tunnel and requests/responses here.
74
74
75
-
Once your public ngrok url has been created, you can use it as the `BASE_CALLBACK_URL` environmental variable and set it in the voice application created in the [Pre-Requisites](#pre-requisites) section.
75
+
Once your public ngrok url has been created, you can update the voice application you created in the [Pre-Requisites](#pre-requisites) section to use it.
76
+
Your `Call-initiated callback url` will be: `<your-public-ngrok-url>/callbacks/callInitiatedCallback`
0 commit comments