Slide 1

Slide 1 text

BETTER API CLIENTS APIDAYS BERLIN, APRIL 2015 BORIS BÜGLING - @NEONACHO

Slide 2

Slide 2 text

COCOAPODS

Slide 3

Slide 3 text

CONTENTFUL

Slide 4

Slide 4 text

No content

Slide 5

Slide 5 text

No content

Slide 6

Slide 6 text

No content

Slide 7

Slide 7 text

source: http://appreviewtimes.com

Slide 8

Slide 8 text

Mobile apps need to be more reliable than the web.

Slide 9

Slide 9 text

No content

Slide 10

Slide 10 text

Let's build better API clients to help building better apps

Slide 11

Slide 11 text

OPEN SOURCE

Slide 12

Slide 12 text

No content

Slide 13

Slide 13 text

DOCUMENTATION

Slide 14

Slide 14 text

/** The server address to use for accessing any resources. Default value: "cdn.contentful.com" */ @property (nonatomic) NSString* server; /** Configure a custom user-agent to be used in the HTTP request headers */ @property (nonatomic) NSString* userAgent;

Slide 15

Slide 15 text

No content

Slide 16

Slide 16 text

COCOAPODS-DOCSTATS $ pod lib docstats 398 tokens, 100.0% documented

Slide 17

Slide 17 text

TESTING

Slide 18

Slide 18 text

let expectation = expectationWithDescription("...") waitForExpectationsWithTimeout(10) { (error) in // ... } expectation.fulfill()

Slide 19

Slide 19 text

API BLUEPRINT # GET /message + Response 200 (text/plain) Hello World!

Slide 20

Slide 20 text

CCLREQUESTREPLAY NSURL *blueprintURL = [[NSBundle mainBundle] URLForResource:@"fitnessfirst" withExtension:@"apib"]; CCLRequestReplayManager *replayManager = [CCLRequestReplayManager managerFromBlueprintURL:blueprintURL error:nil]; [replayManager replay];

Slide 21

Slide 21 text

No content

Slide 22

Slide 22 text

COCOAPODS-COVERAGE pod lib coverage

Slide 23

Slide 23 text

DISTRIBUTION

Slide 24

Slide 24 text

"Download the SDK from our webpage."

Slide 25

Slide 25 text

No content

Slide 26

Slide 26 text

pod 'ContentfulDeliveryAPI'

Slide 27

Slide 27 text

COCOAPODS-PACKAGER pod package ContentfulDeliveryAPI.podspec

Slide 28

Slide 28 text

No content

Slide 29

Slide 29 text

spec.dependency 'AFNetworking', '>= 2.5.2'

Slide 30

Slide 30 text

SO, WE'RE DONE, RIGHT?

Slide 31

Slide 31 text

ANTICIPATING CHANGE IS ONE OF THE CENTRAL THEMES OF REST.

Slide 32

Slide 32 text

Example: creating a poll

Slide 33

Slide 33 text

Slide 34

Slide 34 text

▸ Offers us to create a question ▸ We can fill in the form we get ▸ Submit the form

Slide 35

Slide 35 text

We can do the same in our apps with Hypermedia

Slide 36

Slide 36 text

FORMATS ▸ HAL (application/hal+json) ▸ Siren (application/vnd.siren+json)

Slide 37

Slide 37 text

SIREN LINK { "entities": [ { "links": [ { "rel": ["self"], "href": "questions/1/choices/1" } ], "rel": ["choices"], "properties": { "choice": "Swift", "votes": 22 } } ] }

Slide 38

Slide 38 text

SIREN ACTION { "actions": { "create": { "href": "/questions", "method": "POST", "fields": [ { "name": "question" }, { "name": "choices" } ], "type": "application/x-www-form-urlencoded" } } }

Slide 39

Slide 39 text

WE CAN NOW CHANGE IMPLEMENTATION DETAILS ON THE FLY

Slide 40

Slide 40 text

CHANGE URIS OF RESOURCES e.g. /polls/{id} to /questions/{id}

Slide 41

Slide 41 text

CHANGE HTTP METHODS e.g. PUT to POST

Slide 42

Slide 42 text

CHANGE THE CONTENT-TYPE

Slide 43

Slide 43 text

CHANGE FIELDS USED IN FORMS

Slide 44

Slide 44 text

REPRESENTOR

Slide 45

Slide 45 text

PRESENCE OF A TRANSITON if let transition = representor.transitions["create"] { } else { // ... }

Slide 46

Slide 46 text

ATTRIBUTES OF A TRANSITION if let transition = representor.transitions["create"] { transition.method transition.uri transition.suggestedContentType }

Slide 47

Slide 47 text

PERFORMING A TRANSITION request(transition, attributes: [ "question": "Favourite programming language?", "choices": [ "Swift", "Ruby", "COBOL" ] ])

Slide 48

Slide 48 text

No content

Slide 49

Slide 49 text

WHAT HAVE WE LEARNED? ▸ Publish source code! ▸ Document! ▸ Test! ▸ Be robust against change!

Slide 50

Slide 50 text

THANK YOU!

Slide 51

Slide 51 text

@NeoNacho boris@contentful.com https://github.com/neonichu http://buegling.com/talks http://www.contentful.com