building a rest api for longevity

80
Building Your API for Longevity May 2016

Upload: mulesoft

Post on 16-Apr-2017

1.549 views

Category:

Software


2 download

TRANSCRIPT

Page 1: Building a REST API for Longevity

Building Your API for LongevityMay 2016

Page 2: Building a REST API for Longevity

This talk is not about how to code your API, but rather to

show you what steps and best practices you need to utilize

to build a successful, long-lived API to the extent that we

can in 45 minutes.

Disclaimer

Page 3: Building a REST API for Longevity

• API Fanatic

• Open Source Contributor

• Author, Speaker, Consultant

• 10+ years hacking Professional Code

• Dev Relations Manager at MuleSoft

About Me

Page 4: Building a REST API for Longevity

APIs are changing the world.

Page 5: Building a REST API for Longevity

Over 13,000 PUBLIC APIs

Page 6: Building a REST API for Longevity
Page 7: Building a REST API for Longevity

Today APIs are connecting…

Page 8: Building a REST API for Longevity

PHONES

Page 9: Building a REST API for Longevity

WATCHES

Page 10: Building a REST API for Longevity

GLASSES

Page 11: Building a REST API for Longevity

CARS

Page 12: Building a REST API for Longevity

REFRIGERATORS

Page 13: Building a REST API for Longevity

THERMOSTATS

Page 14: Building a REST API for Longevity

IN HOME ROBOTS

Page 15: Building a REST API for Longevity

AND MORE

Page 16: Building a REST API for Longevity

THINK ABOUT THAT…

Page 17: Building a REST API for Longevity

In order to work, the IoT requires that APIs remain persistent.

Page 18: Building a REST API for Longevity

+

Page 19: Building a REST API for Longevity

Versioning and making changes is expensive…

Page 20: Building a REST API for Longevity

FOR EVERYONE.

Page 21: Building a REST API for Longevity

Thankfully with 5 Simple Steps you can build an API that is designed to last.

Page 22: Building a REST API for Longevity

1 – Go in with a long-term mindset

2 – Understand what you’re building

3 – Utilize Spec Driven Development

4 – Incorporate Best Practices

5 – Repeat steps 1-4 for all new features

They are:

Page 23: Building a REST API for Longevity

• Your API is a Contract

• Versioning is not a solution

• Understand you suck at design

• You can pay a little now, or much more later

• You need to think things through

• Mind-set is everything

Think long-term:

Page 24: Building a REST API for Longevity

Your API is a contract, it’s your word to your users. Users who are not only depending on a working API to integrate with your service, but in order to provide food for their families.

Your users are depending on you…

Page 25: Building a REST API for Longevity

This means you need to think through every aspect of your API before building it.

Page 26: Building a REST API for Longevity

• Who is your API for?

• What type of API are you building?

• How are you going to maintain your API?

• How are you going to document your API?

• How are you going to let users interact with your API?

• How are you going to manage authentication, provisioning, throttling, and developer

security?

• How are you going to protect your servers against attacks, developer misuse, etc?

• How are you going to manage support?

Thinking things through…

Page 27: Building a REST API for Longevity

• Who are your end users?- Current customers- Business partners- Third-party services

• What actions do they need access to?- This means sitting down and talking to them!

• How can you involve them in the design process?- Your users should be involved from Day One.

Who will be using your API?

Page 28: Building a REST API for Longevity

• List out WHY you are making the API- Saying that you’re exposing your data to users is not good

enough- explain HOW they will use it

• Explain how your API will interact with existing services

• List out the actions the API needs to be able to handle- Users: add, edit, reset password, delete, etc…- Messages: draft, send, retrieve, archive, etc…

• Do only what is NECESSARY• DON’T get fancy.

What is the purpose of your API?

Page 29: Building a REST API for Longevity

List out what your users need to be able to do:

Page 30: Building a REST API for Longevity

• Are you building a REST, partial REST, SOAP, or RPC based

API?

• Why are you building your API in that format?

• What does that mean for development?

• What does that mean for usability?

• What does that mean for longevity?

What type of API are you building?

Page 31: Building a REST API for Longevity

What type of API are you building?

Page 32: Building a REST API for Longevity

• Client-Server

• Stateless

• Cacheable

• Interface/ Uniform Contract

• Layered System

• Code on Demand (optional)

Do you understand the REST constraints?

Page 33: Building a REST API for Longevity

Most APIs are NOT RESTful.

Page 34: Building a REST API for Longevity

This is why it’s so important to understand the different types of APIs, why each type is different, and why you are choosing one over the other.

Page 35: Building a REST API for Longevity

It also means building your API for beyond today…

Page 36: Building a REST API for Longevity

...people are fairly good at short-term design, and usually awful at long-term design.”

“-Dr. Roy Fielding

Page 37: Building a REST API for Longevity

Versioning is a necessary evil.

Page 38: Building a REST API for Longevity

• Backwards incompatibilities

• Multiple Services to Maintain

• Multiple Systems to Support

• Creates confusion among developers

• Developer adoption is nearly impossible

Problems with versioning

Page 39: Building a REST API for Longevity

• Backwards incompatible platform changes

• Your API is no longer extendable

• Your spec is out dated (ie SOAP)

You need to version when:

Page 40: Building a REST API for Longevity

• Added new endpoints

• Added additional data in response

• Changed technologies (java to ruby)

• Changed your application’s services (code)

But you shouldn’t version just because you:

Page 41: Building a REST API for Longevity

Versioning does not excuse poor design.

Page 42: Building a REST API for Longevity

And a poorly designed API will cost you far more in the long run, adding months to fix what could have been prevented in weeks. There are no shortcuts or quick fixes, you can either build your API the right way to begin with, or pay substantially for it in the long-run.

Page 43: Building a REST API for Longevity

• Define your API before Coding

• Use Design Patterns/ Code Reuse

• Mock and get User Feedback

• Make Necessary Changes

• Start Coding – to the Spec

• DO NOT DEVIATE!

Use Spec Driven Development

Page 44: Building a REST API for Longevity

Spec Driven Development means a hybrid between agile and waterfall methodologies. You should develop your spec iteratively, incorporating agile user testing. However, the actual development (coding) of your API should be static, driven by the spec with no deviation.

Page 45: Building a REST API for Longevity

Disclaimer: Waterfall refers to the spec and changing the spec only! You should still use sprints for code development – just at this point the spec should not be changing.

Page 46: Building a REST API for Longevity

Hybrid approach

Design Development

Continuous, fluid, changeable Static… No turns

Page 47: Building a REST API for Longevity

The agile design cycle

Page 48: Building a REST API for Longevity

The goal is that by utilizing agile user testing, carefully designing, and prototyping your API in an iterative state, that most design related issues have already been discovered and resolved. Allowing you to develop fearlessly.

Page 49: Building a REST API for Longevity

The problem is up until now, designing and prototyping an API has been extremely costly. Requiring developers to create a mock API through extensive coding, and without any real constraints/ pattern reuse.

Page 50: Building a REST API for Longevity

However, there are several new specs being driven by today’s industry leaders making it easier define your API: with tools to design, prototype, document, and allow user interaction.

Page 51: Building a REST API for Longevity

• RAML

• IO Docs

• Swagger

• API Blueprint

Some of today’s specs:

Page 52: Building a REST API for Longevity

• You can define your API in just a few lines of code

• You can see what it would look like as you go

• You can quickly prototype it for devs to try

• You can quickly make tweaks/ changes

• You can easily document your API

• You can let developers try your API online

• You can let developers interact with your and other APIs

• Generate SDKs/ client libraries for your API (REST United, APIMatic.io)

Using RAML you can:

Page 53: Building a REST API for Longevity

• You can use data models and design patterns

• You can reuse code (libraries, overlays, traits, resourceTypes)

More importantly…

resourceTypes: - collection: description: Collection of available <<resourcePathName>> in Jukebox. get: description: Get a list of <<resourcePathName>>. responses: 200: body: application/json: example: | <<exampleCollection>>

Page 54: Building a REST API for Longevity

The RAML API Designer

Page 55: Building a REST API for Longevity

What does RAML look like?

#%RAML 1.0 title: World Music APIbaseUri: http://example.api.com/{version}version: v1/playlists: get: responses: 200: body: application/json: example: | { “playlistID” : 1, “playlistName” : “My Awesome Playlist”, “genre” : “top40”, “songs” : 40 }

Page 56: Building a REST API for Longevity

Remember, your spec is not a one-and-done, rather it is the blueprint for your API. Anytime you do something to your API you should be modifying the spec and going through user testing before writing code. You should never have code that does something not defined by your spec.

Page 57: Building a REST API for Longevity

• Use Nouns

• Use CRUD

• Use Hypermedia (HATEOAS)

• Use Accept/ Content-Type

• Return Header Codes

• Return Descriptive Error Messages

Incorporate Best Practices:

Page 58: Building a REST API for Longevity

Use Nouns.

Page 59: Building a REST API for Longevity

Use:/users

Not: /createUser /getUser/deleteUser

Page 60: Building a REST API for Longevity

Utilize CRUD.

Page 61: Building a REST API for Longevity

Create (POST)

Read (GET)

Update (PUT/ PATCH)

Delete (DELETE)

Page 62: Building a REST API for Longevity

Use Hypermedia.

HATEOAS

Page 63: Building a REST API for Longevity

• HAL

• JSON-LD

• JSON API

• Collection+JSON

• Siren

Most popular hypertext link specs

Page 64: Building a REST API for Longevity

{ "data" : { "user": { "userId” : 1, "fname":"first", "lname":"last”, "_links" : { "self": { "href" : "/api/user/id/1" }, "messages": { "href" : "/api/message/id/1/lname/last" } } } }}

HAL

Page 65: Building a REST API for Longevity

Use Accept/ Content-Type Headers.

Page 66: Building a REST API for Longevity

Using headers gives you flexibility to support multiple types of formats

from the same resource without worrying about breaking backwards

compatibility.

Most common:

• application/json - wider language support

• application/xml

Use accept/ content-type headers

Page 67: Building a REST API for Longevity

Use Response Codes.

Page 68: Building a REST API for Longevity

• 200 – OK• 201 – Created• 304 – Not modified• 400 – Bad Request• 401 – Not Authorized• 403 – Forbidden• 404 – Page/ Resource Not Found• 405 – Method Not Allowed• 415 – Unsupported Media Type• 500 – Internal Server Error

Page 69: Building a REST API for Longevity

• 418 – I’m a Teapot…• 420 – Enhance Your Calm

Or if you’re feeling super creative…

Page 70: Building a REST API for Longevity

Use Descriptive Error Messages.

Page 71: Building a REST API for Longevity

{ 'exception' { 'code' : 'e3526', 'message' : 'Missing UserID', 'description' : 'A UserID is required to edit a user.', 'link' : 'http://docs.mysite.com/errors/e3526/' }}

The more information you provide, the easier it will be for developers to integrate your API without contacting Support.

Page 72: Building a REST API for Longevity

• vnd.error

• Google Errors

• JSON API

Common descriptive error formats

Page 73: Building a REST API for Longevity

Also be sure to keep your documentation up to date and simple enough for developers to quickly find and implement solutions to even the most complex problems. Poor documentation has been the death of many an API.

Page 74: Building a REST API for Longevity

Finally, when adding new things to your API, be sure to:

Page 75: Building a REST API for Longevity

1 – Go in with a long-term mindset

2 – Understand what you’re building

3 – Utilize Spec Driven Development

4 – Incorporate Best Practices

Finally, when adding new things to your API, be sure to:

Page 76: Building a REST API for Longevity

It only takes ONE little thing to significantly reduce your API’s life span. Every action you make on your API must be carefully thought out and tested BEFORE being pushed to production.

Page 77: Building a REST API for Longevity

Remember...

Page 78: Building a REST API for Longevity

Building an API is easy.

Page 79: Building a REST API for Longevity

Designing an API is hard.

Page 80: Building a REST API for Longevity

read more @mulesoft.com/restbook