Skip to content

✏️ Fix typos in readme and streams #317

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions node/connect-basic/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@ You can setup your environment to run the demo by using the CLI.
1. Find available phone number

```bash
twilio api:core:available-phone-numbers:local:list --country-code="US" --voice-enabled --properties="phoneNumber"`
twilio api:core:available-phone-numbers:local:list --country-code="US" --voice-enabled --properties="phoneNumber"
```

2. Purchase the phone number (where `+123456789` is a number you found)

```bash
twilio api:core:incoming-phone-numbers:create --phone-number="+123456789"`
twilio api:core:incoming-phone-numbers:create --phone-number="+123456789"
```

3. Start ngrok
Expand Down
2 changes: 1 addition & 1 deletion node/connect-basic/templates/streams.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<Say>This demo application will repeat back what you say. Watch the console to see the media messages. Begin speaking now.</Say>
<Connect>
<Stream url="wss://<ngrok url>/streams">
<Parameter name="aCutomParameter" value="aCustomValue that was set in TwiML" />
<Parameter name="aCustomParameter" value="aCustomValue that was set in TwiML" />
</Stream>
</Connect>
<Say>Thank you! The WebSocket has been closed and the next TwiML verb was reached.</Say>
Expand Down