mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-25 10:17:23 +00:00
Add twilio component and update platforms
This commit is contained in:
parent
e9aa4894af
commit
d75387f343
@ -9,18 +9,13 @@ sharing: true
|
|||||||
footer: true
|
footer: true
|
||||||
logo: twilio.png
|
logo: twilio.png
|
||||||
ha_category: Notifications
|
ha_category: Notifications
|
||||||
ha_release: "0.37"
|
ha_release: 0.37
|
||||||
---
|
---
|
||||||
|
|
||||||
The `twilio` notification platform enables sending notifications via Voice, powered by [Twilio](https://twilio.com).
|
The `twilio_call` notification platform enables sending notifications via Voice, powered by [Twilio](https://twilio.com).
|
||||||
Passed message will be read by Text-To-Speech service.
|
Passed message will be read by Text-To-Speech service.
|
||||||
|
|
||||||
This component is just an adaptation from the Twilio SMS notification platform and won't exist without it.
|
The requirement is that you have setup [Twilio](/components/twilio/).
|
||||||
|
|
||||||
Free trial account is available at [Twilio](https://twilio.com) website providing free calls to verified phone numbers.
|
|
||||||
Calls are limited to 10 minutes and will play a short trial message before your message runs.
|
|
||||||
|
|
||||||
Upgraded accounts have no limitation.
|
|
||||||
|
|
||||||
To use this notification platform in your installation, add the following to your `configuration.yaml` file:
|
To use this notification platform in your installation, add the following to your `configuration.yaml` file:
|
||||||
|
|
||||||
@ -29,15 +24,11 @@ To use this notification platform in your installation, add the following to you
|
|||||||
notify:
|
notify:
|
||||||
- name: NOTIFIER_NAME
|
- name: NOTIFIER_NAME
|
||||||
platform: twilio_call
|
platform: twilio_call
|
||||||
account_sid: ACCOUNT_SID_FROM_TWILIO
|
|
||||||
auth_token: AUTH_TOKEN_FROM_TWILIO
|
|
||||||
from_number: E164_PHONE_NUMBER
|
from_number: E164_PHONE_NUMBER
|
||||||
```
|
```
|
||||||
|
|
||||||
Configuration variables:
|
Configuration variables:
|
||||||
|
|
||||||
- **account_sid** (*Required*): Your Twilio Account SID which can be found in your [console](https://www.twilio.com/console). It starts with the letters `AC`.
|
|
||||||
- **auth_token** (*Required*): Your Twilio Account SID which can be found in your [console](https://www.twilio.com/console). It should be directly under where you found the `account_sid`.
|
|
||||||
- **from_number** (*Required*): An [E.164](https://en.wikipedia.org/wiki/E.164) formatted phone number, like +14151234567. See [Twilio's guide to formatting phone numbers](https://www.twilio.com/help/faq/phone-numbers/how-do-i-format-phone-numbers-to-work-internationally) for more information.
|
- **from_number** (*Required*): An [E.164](https://en.wikipedia.org/wiki/E.164) formatted phone number, like +14151234567. See [Twilio's guide to formatting phone numbers](https://www.twilio.com/help/faq/phone-numbers/how-do-i-format-phone-numbers-to-work-internationally) for more information.
|
||||||
- **name** (*Optional*): Setting the optional parameter `name` allows multiple notifiers to be created. The default value is `notify`. The notifier will bind to the service `notify.NOTIFIER_NAME`.
|
- **name** (*Optional*): Setting the optional parameter `name` allows multiple notifiers to be created. The default value is `notify`. The notifier will bind to the service `notify.NOTIFIER_NAME`.
|
||||||
|
|
||||||
|
@ -18,23 +18,14 @@ To use this notification platform in your installation, add the following to you
|
|||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
# Example configuration.yaml entry
|
# Example configuration.yaml entry
|
||||||
twilio:
|
|
||||||
account_sid: "abc"
|
|
||||||
auth_token: "xyz"
|
|
||||||
|
|
||||||
notify:
|
notify:
|
||||||
- name: sms
|
- name: NOTIFIER_NAME
|
||||||
platform: twilio_sms
|
platform: twilio_sms
|
||||||
from_number: "+1111"
|
from_number: E164_PHONE_NUMBER
|
||||||
- name: call
|
|
||||||
platform: twilio_call
|
|
||||||
from_number: "+1111"
|
|
||||||
```
|
```
|
||||||
|
|
||||||
Configuration variables:
|
Configuration variables:
|
||||||
|
|
||||||
- **account_sid** (*Required*): Your Twilio Account SID which can be found in your [console](https://www.twilio.com/console). It starts with the letters `AC`.
|
|
||||||
- **auth_token** (*Required*): Your Twilio Account SID which can be found in your [console](https://www.twilio.com/console). It should be directly under where you found the `account_sid`.
|
|
||||||
- **from_number** (*Required*): An [E.164](https://en.wikipedia.org/wiki/E.164) formatted phone number, like +14151234567. See [Twilio's guide to formatting phone numbers](https://www.twilio.com/help/faq/phone-numbers/how-do-i-format-phone-numbers-to-work-internationally) for more information.
|
- **from_number** (*Required*): An [E.164](https://en.wikipedia.org/wiki/E.164) formatted phone number, like +14151234567. See [Twilio's guide to formatting phone numbers](https://www.twilio.com/help/faq/phone-numbers/how-do-i-format-phone-numbers-to-work-internationally) for more information.
|
||||||
- **name** (*Optional*): Setting the optional parameter `name` allows multiple notifiers to be created. The default value is `notify`. The notifier will bind to the service `notify.NOTIFIER_NAME`.
|
- **name** (*Optional*): Setting the optional parameter `name` allows multiple notifiers to be created. The default value is `notify`. The notifier will bind to the service `notify.NOTIFIER_NAME`.
|
||||||
|
|
||||||
|
33
source/_components/twilio.markdown
Normal file
33
source/_components/twilio.markdown
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
---
|
||||||
|
layout: page
|
||||||
|
title: "Twilio"
|
||||||
|
description: "Instructions how to add Twilio notifications to Home Assistant."
|
||||||
|
date: 2016-05-14 14:14
|
||||||
|
sidebar: true
|
||||||
|
comments: false
|
||||||
|
sharing: true
|
||||||
|
footer: true
|
||||||
|
logo: twilio.png
|
||||||
|
ha_category: Notifications
|
||||||
|
ha_release: "0.20"
|
||||||
|
---
|
||||||
|
|
||||||
|
The `twilio` component enables the sending of notifications via SMS and the creation of calls with [Twilio](https://twilio.com).
|
||||||
|
|
||||||
|
Free trial account is available at [Twilio](https://twilio.com) website providing free calls to verified phone numbers.
|
||||||
|
Calls are limited to 10 minutes and will play a short trial message before your message runs. Upgraded accounts have no limitation.
|
||||||
|
|
||||||
|
To use this notification component in your installation, add the following to your `configuration.yaml` file:
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
# Example configuration.yaml entry
|
||||||
|
twilio:
|
||||||
|
account_sid: ACCOUNT_SID_FROM_TWILIO
|
||||||
|
auth_token: AUTH_TOKEN_FROM_TWILIO
|
||||||
|
```
|
||||||
|
|
||||||
|
Configuration variables:
|
||||||
|
|
||||||
|
- **account_sid** (*Required*): Your Twilio Account SID which can be found in your [console](https://www.twilio.com/console). It starts with the letters `AC`.
|
||||||
|
- **auth_token** (*Required*): Your Twilio Account SID which can be found in your [console](https://www.twilio.com/console). It should be directly under where you found the `account_sid`.
|
||||||
|
|
Loading…
x
Reference in New Issue
Block a user