Dil3mm4 / Telegram-Connect

An Amazon Alexa Skill for sending and listening to messages from the Telegram Messenger

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Telegram Connect

Telegram Connect is an open source Alexa Skill that connects Alexa with the Telegram Messenger.

High Level Overview

Supported Features

  • Listening to new telegrams you received on Alexa
  • Languages: English

Desired Features (contributions welcome!)

  • Support more languages: German, Spanish, Italian
  • Add Voice Profiles for people who use the same Alexa device but different telegram accounts.

Getting started

If you want to play around with the skill in your own Alexa Developer Console, follow these steps:

Prerequisites

Clone the repository

git clone https://github.com/LorenzHW/Telegram-Connect.git
cd Telegram-Connect
touch lambda/secrets.py

We now want to deploy the skill to your Alexa developer console. In order to do that, we need to do a couple of things first.

Head over to Telegram and create an api_id and api_hash. Then update secrets.py

API_ID = YOUR_API_ID (type: integer)
API_HASH = YOUR_API_HASH (type: string)

Go to .ask/ask-states.json and change the file to

{
  "askcliStatesVersion": "2020-03-31",
  "profiles": {
    "default": {
      "skillInfrastructure": {
        "@ask-cli/lambda-deployer": {
          "deployState": {}
        }
      }
    }
  }
}

Then head over to skill-package/skill.json and set the custom key to:

.
.
    "custom": {}
.
.

Deploy the skill to AWS:

ask deploy

This will create a new skill in your Alexa Developer Console, an AWS Lambda function and DynamoDB database.

You need to grant your lambda function access to your DynamoDB database.

  1. Head over to AWS
  2. IAM -> Roles. Find the role that is associated with your lambda function (something like: ask-lambda-telegram-connect)
  3. Attach policy: AmazonDynamoDBFullAccess

At last you need to increase the timeout and the memory of your lambda function.

  1. Inside the AWS console go to lambda and find you lambda function.
  2. After you clicked on it, edit Basic Settings->Timeout to 20 seconds.
  3. Increase the memory of the function as well.

Since we are using the phone number of the user, we need set according permissions for that inside the Alexa Developer Console

  1. On the main page of the Alexa Developer Console go edit the newly deployed skill
  2. In the menu on the left choose Tools->Permission and activate: 'Customer Phone Number'

Feel free to create PR's!

About

An Amazon Alexa Skill for sending and listening to messages from the Telegram Messenger

License:GNU General Public License v3.0


Languages

Language:Python 99.8%Language:Shell 0.2%