Skip to content

Instantly share code, notes, and snippets.

@mjg123
Created May 2, 2019 11:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mjg123/7341da6483bdb73c55f982849af73a75 to your computer and use it in GitHub Desktop.
Save mjg123/7341da6483bdb73c55f982849af73a75 to your computer and use it in GitHub Desktop.
Code Card Java
// 1. Sign up -> twilio.com/try-twilio
// 2. Get a number -> twilio.com/console
// 3. Add the Twilio Java library
// --> twilio.com/docs/libraries/java
import com.twilio.Twilio;
import com.twilio.rest.api.v2010.account.Call;
import com.twilio.type.PhoneNumber;
import java.net.URI;
import java.net.URISyntaxException;
class MakeACall {
public static void main(String[] s)
throws URISyntaxException {
// 4. Initialize the Twilio client
Twilio.init(
System.getenv("ACCOUNT_SID"),
System.getenv("AUTH_TOKEN"));
// 5. Make a call
Call.creator(
new PhoneNumber("DESTINATION"),
new PhoneNumber("TWILIO_NUMBER"),
new URI("http://demo.twilio.com/docs/voice.xml"))
.create();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment