Twilio發送短信

簡介

Twilio 爲未來的商業溝通提供強大支持,並使開發人員可以將語音、VoIP 和消息傳送嵌入到應用程序中。 它們對基於雲的全球環境中所需的全部基礎結構進行虛擬化,並經過 Twilio 通訊 API 平臺將其公開。 可輕鬆構建和擴展應用程序。 享受現用現付訂價所帶來的靈活性,並從雲可靠性中受益。java

利用 Twilio 語音,應用程序能夠發起和接收電話呼叫。 Twilio SMS 使應用程序可以發送和接收文本消息。 利用 Twilio 客戶端,能夠從任何手機、平板電腦或瀏覽器發起 VoIP 呼叫並支持 WebRTC。git

帳號註冊

關於帳號註冊能夠參考這篇文章 : http://uuxn.com/twilio-toll-free-smsgithub

準備

使用前須要登錄官網獲取三個參數瀏覽器

  • accountSid
  • authToken
  • fromPhoneNumber

使用

  1. 建立maven工程,添加依賴。微信

    <dependency>
     	<groupId>com.twilio.sdk</groupId>
     	<artifactId>twilio</artifactId>
     	<version>7.17.0</version>
     </dependency>
  2. 編寫代碼maven

    @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](https://my.oschina.net/azibug)
     	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](https://my.oschina.net/azibug)
         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());
    
         	}
    
         }
     }
  3. 結果ui

    手機能夠正常收到短信,使用的時候發送頻率控制在1s一條this

參考

https://www.twilio.com/docs/sms/quickstart/java.net

https://github.com/twilio/twilio-javacode

如但願瞭解更多,請關注微信公衆號

相關文章
相關標籤/搜索