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!