2016-12-23 178 views
-3

晚上好我的同事我希望你很好請我需要整合一個API,這將幫助我從我的Java應用程序發送短信和電話我必須找到一個叫做Ozeki Java SMS SDK,但我可以如果有人可以幫助我找到解決方案並提前致謝,請不要將它集成到我的應用程序中:)發送短信與Java應用程序

回答

0

您可以檢查這一個:https://www.twilio.com/docs/quickstart/java/sms 這不是很難使用。

這裏給創建一個類SmsSender正式例如:

// Install the Java helper library from twilio.com/docs/java/install 
import com.twilio.Twilio; 
import com.twilio.rest.api.v2010.account.Message; 
import com.twilio.type.PhoneNumber; 

import java.net.URISyntaxException; 

public class SmsSender { 

// Find your Account Sid and Auth Token at twilio.com/console 
public static final String ACCOUNT_SID = "ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; 
public static final String AUTH_TOKEN = "your_auth_token"; 

public static void main(String[] args) throws URISyntaxException { 
    Twilio.init(ACCOUNT_SID, AUTH_TOKEN); 

    Message message = Message 
      .creator(new PhoneNumber("+14159352345"), // to 
        new PhoneNumber("+14158141829"), // from 
        "Where's Wallace?") 
      .create(); 
} 

}

請注意,你需要爲了有一個帳戶標記註冊。

+0

只有超鏈接不能成爲答案,如果超鏈接變得過時,你的答案將變得毫無價值。 –

+0

@AmitBhati,我編輯了我的答案。感謝您的建議。 – Marrakchino

+0

謝謝你的回答,實際上我和Twilio一起工作過,我也嘗試過,但我的問題是公司需要與OZEKI NG - SMS GATEWAY合作,你會在下面找到我的代碼與Twilio Getway。 –