簡介
Twilio 為將來的商業(yè)溝通提供強大支持栋盹,并使開發(fā)人員能夠?qū)⒄Z音蘸劈、VoIP 和消息傳送嵌入到應用程序中冲呢。 它們對基于云的全球環(huán)境中所需的所有基礎結構進行虛擬化,并通過 Twilio 通信 API 平臺將其公開谤祖。 可輕松構建和擴展應用程序。 享受現(xiàn)用現(xiàn)付定價所帶來的靈活性老速,并從云可靠性中受益粥喜。
利用 Twilio 語音,應用程序可以發(fā)起和接收電話呼叫橘券。 Twilio SMS 使應用程序能夠發(fā)送和接收文本消息额湘。 利用 Twilio 客戶端,可以從任何手機旁舰、平板電腦或瀏覽器發(fā)起 VoIP 呼叫并支持 WebRTC锋华。
賬號注冊
關于賬號注冊可以參考這篇文章 : http://uuxn.com/twilio-toll-free-sms
準備
使用前需要登陸官網(wǎng)獲取三個參數(shù)
- accountSid
- authToken
- fromPhoneNumber
使用
-
創(chuàng)建maven工程,添加依賴箭窜。
<dependency> <groupId>com.twilio.sdk</groupId> <artifactId>twilio</artifactId> <version>7.17.0</version> </dependency>
-
編寫代碼
@RunWith(SpringRunner.class) @SpringBootTest public class DemoApplicationTests { private static final String accountSid = "ACxxxx"; // Your Account SID from www.twilio.com/user/account private static final String authToken = "xxxx"; // Your Auth Token from www.twilio.com/user/account @Test public void contextLoads() { Twilio.init(accountSid, authToken); Message message = Message.creator( new PhoneNumber("+xxx"), // To number ,Phone number with area code new PhoneNumber("+xxx"), // From number " A book is the same today as it always was and it will never change." // SMS body ).create(); if (! StringUtils.isEmpty(message.getSid())){ System.out.println(message.getSid()); } } @Test public void sendCall() throws URISyntaxException { Twilio.init(accountSid, authToken); Call call = Call.creator( new PhoneNumber("+xxxx"), // To number new PhoneNumber("+xxxx"), // From number // Read TwiML at this URL when a call connects (hold music) new URI("http://twimlets.com/holdmusic?Bucket=com.twilio.music.ambient") ).create(); if (! StringUtils.isEmpty(call.getSid())){ System.out.println(call.getSid()); } } }
-
結果
手機可以正常收到短信毯焕,使用的時候發(fā)送頻率控制在1s一條