All Downloads are FREE. Search and download functionalities are using the official Maven repository.

bichromate.httpListner.twilioFactory Maven / Gradle / Ivy

Go to download

Java, Selenium, Appium, Winium, Extend, and TestNG automated testing framework. Bichromate integrates the best of these frameworks and takes automation to the next level. With Bichromate there is one function call that builds any type of Web,IOS Mobile, Android, and Windows App driver on any platform (Windows, Mac, Linux). From Local web drivers, to SauceLabs, Browserstack, and Selenium grid. Build data driven tests is never easier. Bichromate also gives you built in Factories that, access DBs, Video Capture, FTP, POM Generation, Hilite element.

There is a newer version: 3.13
Show newest version
package bichromate.httpListner;

import com.twilio.Twilio;
//import com.twilio.http.TwilioRestClient;
import com.twilio.rest.api.v2010.account.Message;
import com.twilio.type.PhoneNumber;


public class twilioFactory {
	

	// 
	// Find your Account Sid and Token at twilio.com/user/account
	//
	private static final String ACCOUNT_SID = "ACba359de1ffb8da045406b914928705b7";
	private static final String AUTH_TOKEN = "26f259e9c33701155d0c084d4beecbdf";
	private static final String FROM_PHONE_NUMBER =  "+18315349078";
	private static final String TO_PHONE_NUMBER =  "+14084803723"; 
	
	public String accountSID = null;
	  
	public twilioFactory(){ 
		Twilio.init(ACCOUNT_SID, AUTH_TOKEN);
	}//twilioFactory
	   
	protected void selfTest(){
		try{
			Message message = Message.creator(/* TO */ new PhoneNumber(TO_PHONE_NUMBER),new PhoneNumber(/* FROM */ FROM_PHONE_NUMBER), "twilioFactory:selfTest. Respond with a test name to run.").create();
			accountSID = new String(message.getSid());
			System.out.println(message.getSid());
		}catch (Exception e){
			System.out.println(e);
		}
		//
		//
		//
		getMessage();
	}//selfTest
	  
	public void getMessage(){

        // Get an object from its sid. If you do not have a sid,
        // check out the list resource examples on this page
		try{
			
				Message message = Message.fetcher(accountSID).fetch();
				System.out.println(message.getBody());
			
		}catch (Exception e){
			System.out.println(e);
		}
	}
	
	public void sendSMS(String toNumber, String message){
		  
		Message message1 = Message.creator(/* TO */ new PhoneNumber(toNumber),new PhoneNumber(/* FROM */ FROM_PHONE_NUMBER), message).create();

		System.out.println(message1.getSid());
		
	
	  }//sendSMS
	  
	  public static class Test
	  {
	 	public  static void main(final String[] args){
	 		
	 		twilioFactory tf = new twilioFactory();
	 		tf.selfTest();
	 		
	 	}//main
	 	
	 }//Test
}//twilioFactory






© 2015 - 2024 Weber Informatics LLC | Privacy Policy