diff --git a/atom.xml b/atom.xml index aeb726c5d3..8841f189a4 100644 --- a/atom.xml +++ b/atom.xml @@ -4,7 +4,7 @@
To retrieve your chat_id
, contact any of the Telegram bots created for this purpose (@myidbot, @get_id_bot)
The quickest way to retrieve your chat_id
is visiting https://api.telegram.org/botYOUR_API_TOKEN/getUpdates or to use $ curl -X GET https://api.telegram.org/botYOUR_API_TOKEN/getUpdates
. Replace YOUR_API_TOKEN
with your actual token.
The result set will include your chat ID as id
in the from
section:
{"ok":true,"result":[{"update_id":254199982,
-"message":{"message_id":27,"from":{"id":123456789,"first_name":"YOUR_FIRST_NAME YOUR_NICK_NAME","last_name":"YOUR_LAST_NAME","username":"YOUR_NICK_NAME"},"chat":{"id":123456789,"first_name":"YOUR_FIRST_NAME YOUR_NICK_NAME","last_name":"YOUR_LAST_NAME","username":"YOUR_NICK_NAME","type":"private"},"date":1678292650,"text":"test"}}]}
+{
+ "ok": true,
+ "result": [{
+ "update_id": 254199982,
+ "message": {
+ "message_id": 27,
+ "from": {
+ "id": 123456789,
+ "first_name": "YOUR_FIRST_NAME YOUR_NICK_NAME",
+ "last_name": "YOUR_LAST_NAME",
+ "username": "YOUR_NICK_NAME"
+ },
+ "chat": {
+ "id": 123456789,
+ "first_name": "YOUR_FIRST_NAME YOUR_NICK_NAME",
+ "last_name": "YOUR_LAST_NAME",
+ "username": "YOUR_NICK_NAME",
+ "type": "private"
+ },
+ "date": 1678292650,
+ "text": "test"
+ }
+ }]
+}
Another way to get your chat ID directly is described below. Start your Python interpreter from the command-line:
diff --git a/hassio/index.html b/hassio/index.html
index 4e917bee0d..3d0050d201 100644
--- a/hassio/index.html
+++ b/hassio/index.html
@@ -95,7 +95,11 @@
Hass.io users can update Home Assistant via the ‘Hass.io’ page in the UI. However please note that Home Assistant updates take time to roll into the Hass.io builds. Therefore there is often a slight delay between the availability of a Home Assistant update and an update being available in Hass.io, be patient. When a Hass.io update is available it will be shown as available on the ‘Hass.io’ page in your UI.
-Hass.io dashboard
+Hass.io dashboard with upgrade notification (under the hamburger menu -> Hass.io)
+
+
+
+Hass.io upgrade process from the SSH command line