데이터 분석가

트윌리오 Twilio SMS 문자 보내기 본문

다양한 자료 정리

트윌리오 Twilio SMS 문자 보내기

PlintAn 2023. 4. 8. 10:00

안녕하세요!

 

트윌리오는 클라우드 기반의 통신 API 플랫폼으로, 가상 번호를 발급해주며 이를 관리하고

 

APP과의 연결도 도와주는 플랫폼입니다 !

 

해당 사이트에 접속.

 

https://www.twilio.com/

 

Communication APIs for SMS, Voice, Video & Authentication | Twilio

Connect with customers on their preferred channels—anywhere in the world. Quickly integrate powerful communication APIs to start building solutions for SMS and WhatsApp messaging, voice, video, and email.

www.twilio.com

1. Twilio 사이트에 접속 후 회원가입 진행

 

2. 계정 생선 후, 개발자 대시보드에서 사용할 API 키 생성

 

3. 필요한 API 사용을 위한 해당 API 구현 언어, 플랫폼 선택

 

4. API 사용을 위해 현재 사용하는 파이썬 프로그램에서 Twilio 패키지를 설치

 

연습삼아 sms보내기

 

# Download the helper library from https://www.twilio.com/docs/python/install
import os
from twilio.rest import Client
# Set environment variables for your credentials
# Read more at http://twil.io/secure
account_sid = "AC88f88069091602440dc3aa7ed585a87c"
auth_token = os.environ["TWILIO_AUTH_TOKEN"]
client = Client(account_sid, auth_token)
message = client.messages.create(
  body="Hello from Twilio",
  from_="+15856562615",
  to="+8210000000" #제 번호에요
)
print(message.sid)

한국 국가 번호 는 +82인데요, 여기에 010 - 0000 - 0000 중에서 맨 앞 0을 뺴고 10 - 0000 - 0000을 입력.

 

+821000000000가 되겠죠 !

 

5. Account SID, Auth Token, My Twilio phone number 확인 !

 

이제 해당 정보로 파이썬에서 활용할 거에요 !

 

Comments