p
play

P H T T E VAN C OOKE @emcooke C O -F OUNDER & CTO twilio CLOUD - PowerPoint PPT Presentation

B UILDING A G REAT W EB API N OVEMBER 17, 2011, QC ON P H T T E VAN C OOKE @emcooke C O -F OUNDER & CTO twilio CLOUD COMMUNICATIONS One simple goal for building great Web APIs... 5 Minutes It should take no more than 5 minutes for a


  1. B UILDING A G REAT W EB API N OVEMBER 17, 2011, QC ON P H T T E VAN C OOKE @emcooke C O -F OUNDER & CTO twilio CLOUD COMMUNICATIONS

  2. One simple goal for building great Web APIs...

  3. 5 Minutes

  4. It should take no more than 5 minutes for a developer to perform a useful task using your API for the first time

  5. What is a Web API? Definition for today: • HTTP/HTTPS endpoint • JSON/XML • Hosted API/Web service • Example: Amazon S3

  6. Twilio Web service APIs to automate Voice and SMS phone communications Carriers Inbound Calls Voice Outbound Calls Mobile/Browser VoIP Send To/From Phone SMS Numbers Short Codes Developer Phone Dynamically Buy Phone Numbers Numbers End User

  7. Why 5 Minutes? • Clear value proposition • Fast signup • Simple API • Efficient quickstarts • Concise accessible docs • Easy authentication (basic vs. oauth) • Debuggable

  8. Try it API Adoption Funnel Good APIs Hear about API Try it Promote Adoption (tell friends) Build it Buy it Production Use Traction

  9. Try it API Adoption Funnel Hear about API 5-Minute Try it Goal Build it Buy it Production Use Traction

  10. 5-minute APIs API Design

  11. C o u n t e r 5-minute APIs E x API Design a m p l e

  12. Media processing API • HTTP API to analyze large (MBs) media files • High tps ~100,000/day • POST data to the API Media You API • API synchronously returns Analysis analysis of media (could be minutes/hours later)

  13. Media processing API • Control and data in the same request (100 MB every request) • Unclear error conditions. Can you resend request? You API ??? • Synchronously wait for response • No request history/billing information

  14. Media processing API Original Request 1 POST http://api.vendor.com/API/Process? key=2hkh&mode=bob&filter=yeah Body is 100MB of binary data Problem Can we safely retry the request on a transient failure?

  15. Media processing API Add a token allowing us to safely retry 2 POST http://api.vendor.com/API/Process? key=2hkh&mode=bob&filter=yeah&token=TK123 Body is 100MB of binary data Problem Exposed to transient failures if the processing takes minutes/hours?

  16. Media processing API Add webhook url to asynchronously respond 3 POST http://api.vendor.com/API/Process? key=2hkh&mode=bob&filter=yeah&token=TK123&c bUrl=http%3A%2F%2Fmyserver.com%2Fresponse Body is 100MB of binary data Problem Request is huge and fragile when data is included with control cmd?

  17. Media processing API Async fetch media & move POST params to body 4 POST http://api.vendor.com/API/Process Body key=2hkh mode=bob filter=yeah token=TK123 cbUrl=http://myserver.com/response mediaUrl=http://s3.com/media.mov

  18. Media processing API Version API and make URL more RESTful 5 POST http://api.vendor.com/v1/Media Body key=2hkh mode=bob filter=yeah token=TK123 cbUrl=http://myserver.com/response mediaUrl=http://s3.com/media.mov Response URI http://api.vendor.com/v1/Media/MD123

  19. 5-minute APIs API Design

  20. Idempotency • Idempotence is the property of certain operations that they can be applied multiple times without changing the result. • Request failures happen. Provide users a safe way to retry requests • Example: POST /BankAccount/Funds {‘value’: 1000, ‘token’: ‘TX123’}

  21. Self-documentation • Sweat what and how you name. Naming is is the best documentation. • Example: GET /Users/ID123 GET /Users/ID123/Friends GET /Users/ID123/Photos

  22. RESTfulness • Adherence to REST object model and verbs provides a clean way to expose business logic • Create POST /Users • Fetch GET /Users/ID123 • Modify PUT/POST /Users/ID123 • Remove DELETE /Users/ID123

  23. Versioning • Do it. Remember you will be stuck supporting old API versions (indefinitely?) • Examples GET /api/1/blag GET /api/v1/blag GET /api/20101206/blag

  24. Statefulness • When possible, offload the work of keeping state/history because it’s hard! • Examples POST /Calls GET /Calls/CA123 GET /Calls/CA123/Recordings/RE123

  25. Predictability • The API should do what users expect • Examples <Play>music.mp3</Play> <Play>music.aiff</Play>

  26. Responsiveness • When a response is available immediately, use a synchronous response. Otherwise, consider an asynchronous webhook rather then polling • Examples: POST /Object/Transforms Body cbUrl=http://b.com/response

  27. Key Ideas • Idempotency • Self-documentation • RESTfulness • Versioning • Statefulness • Predictability • Responsiveness

  28. 5-minute APIs “Good”

  29. What makes a good API? • Easy to Learn • Easy to use (even without documentation) • Hard to Misuse • Easy to read and maintain code that uses it • Sufficiently powerful to satisfy requirements • Easy to extend • Appropriate to audience How to Design a Good API and Why it Matters Joshua Bloch, Google

  30. Human-centric

  31. Saleforce auth Campaigns from Adword API

  32. Dynamic phone number provisioning via Twilio API

  33. Saleforce CRM data Saleforce app APIs Google Maps API Twilio Client API

  34. Simplicity

  35. D EPLOYING Y OUR W EB API P H T T twilio CLOUD COMMUNICATIONS

  36. Infrastructure • 100’s of prod hosts in continuous operation • 80+ service types running in prod - Python(Twisted/GEvent), PHP , Java • 50+ prod database servers - MySQL, Redis • Prod deployments several times/day across 7 engineering teams

  37. Website Deployment Content Frequency(Risk) 4 buckets Website Code Log Scale 1000x REST API Big DB 100x Schema 10x 1x PHP/Ruby Python/Java SQL CMS etc. etc.

  38. Website Deployment Content Processes Website Code REST API Big DB Schema CI Tests CI Tests CI Tests One Click Human Sign-off Human Sign-off One Click Human Assisted Click One Click

  39. Cluster automation via boxconfig

  40. Cluster automation via boxconfig • Build and deployment system - boot entire Twilio stack with one key press • Host configuration - versioned code & config • Host orchestration - load balancing • Monitoring and alerting - nagios • Multi-datacenter deployment & analytics

  41. Cluster automation via boxconfig Start Roles role role role Provision Fetch SVN/git S3 Boxconfig Base (AMI) Vanilla Linux Host (cloud/colo)

  42. twilio Evan Cooke @emcooke

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend