FreshlyOrc
FreshlyOrc

Reputation: 31

Is it really possible to use Twilio on Java App Engine using REST?

According to this question, it's possible to use Twilio on Java App Engine using rest.

But since Twilio isn't whitelisted there, does that mean you have to write your own library to work with Twilio calls?

Are there any examples of how to do this on App Engine?

Upvotes: 3

Views: 288

Answers (1)

cdeszaq
cdeszaq

Reputation: 31280

As the answer to that question indicates, the official client library does not work on GAE since it requires a class that GAE doesn't allow, so yes, you will have to write your own "library" to deal with twilio calls.

Thankfully, there are a large number of REST libraries out there that can do much of the heavy lifting for you.

As to examples, I don't know of any, but perhaps a google search would illuminate some.

Upvotes: 4

Related Questions