From f58190bc0530ab0953aa3dcf4d26e8da3efea4d1 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 28 Apr 2016 13:08:15 +0200 Subject: [PATCH] Add missing configuration variable --- source/_components/notify.twitter.markdown | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/source/_components/notify.twitter.markdown b/source/_components/notify.twitter.markdown index 2b4a4ea740b..130c122e4a0 100644 --- a/source/_components/notify.twitter.markdown +++ b/source/_components/notify.twitter.markdown @@ -14,7 +14,7 @@ ha_category: Notifications The `twitter` platform uses [Twitter](https://twitter.com) to delivery notifications from Home Assistant. -Go to [Twitter Apps](https://apps.twitter.com/app/new) and create an application. Visit "Keys and Access Tokens" of the application to get the details ("Consumer Key", "Consumer Secret", and "Access Token Secret" which needs to be generated). +Go to [Twitter Apps](https://apps.twitter.com/app/new) and create an application. Visit "Keys and Access Tokens" of the application to get the details ("Consumer Key", "Consumer Secret", "Access Token" and "Access Token Secret" which needs to be generated). To add Twitter to your installation, add the following to your `configuration.yaml` file: @@ -25,6 +25,7 @@ notify: platform: twitter consumer_key: ABCDEFGHJKLMNOPQRSTUVXYZ consumer_secret: ABCDEFGHJKLMNOPQRSTUVXYZ + access_token: ABCDEFGHJKLMNOPQRSTUVXYZ access_token_secret: ABCDEFGHJKLMNOPQRSTUVXYZ ``` @@ -33,6 +34,7 @@ Configuration variables: - **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`. - **consumer_key** (*Required*): Your "Consumer Key" (API Key) for the application. - **consumer_secret** (*Required*): Your "Consumer Secret" (API Secret) for the application. +- **access_token** (*Required*): Your "Access Token" for the application. - **access_token_secret** (*Required*): Your "Access Token Secret" for the application. To use notifications, please see the [getting started with automation page](/getting-started/automation/).