How to create call from twilio helper liabrary in google app engine
问题 I am trying to create an Outbound call from google app engine using the Twilio Java helper library Example: private void createcall(HttpServletRequest req, HttpServletResponse resp) { String ACCOUNT_SID = "AC69000ff19655ca86c5a4ae027b886665"; String AUTH_TOKEN = "bef9594c1e7f542b6e331bd7e50077d0"; try { TwilioRestClient client = new TwilioRestClient(ACCOUNT_SID, AUTH_TOKEN); Map<String, String> params = new HashMap<String, String>(); params.put("Url", "http://demo.twilio.com/docs/voice.xml");