Python Bot.py может отправлять текстовые сообщения с моего компьютера с помощью Ngrok. Python Bot.py также может отправлять текстовые сообщения с помощью виртуального сервера на Pythonanywhere.com
Код: Выделить всё
#Send text message only
#create twilio client using the account_sid, auth_token
client = Client(account_sid, auth_token)
message = client.messages.create(
to= from_number, # to phone number
from\_=to_number,# from phone number
body= return_body # return_body is the text to send
)
Код: Выделить всё
#Sending a text message and image URLs
#create twilio client using the account_sid, auth_token
client = Client(account_sid, auth_token)
message = client.messages.create(
to= from_number, #to phone number
from\_=to_number, # from phone number
body= return_body, # return_body is the text to send
media_url=\['https://www.example.com/images/logo.jpg', 'https://www.example.com/bot/Help-Desk.jpg'\] # send the image Url's
)
Подробнее здесь: https://stackoverflow.com/questions/798 ... xt-message
Мобильная версия