Skip to content

Commit e5ef3aa

Browse files
author
Wes Billman
committed
Readme updates
1 parent f88df37 commit e5ef3aa

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

README.md

+29
Original file line numberDiff line numberDiff line change
@@ -60,3 +60,32 @@ let feed = try? JSONFeed(data: data)
6060
let string = <some utf8 json string>
6161
let feed = try? JSONFeed(string: string)
6262
```
63+
### Reading from a feed via URLSession
64+
65+
Using default configuration and URLSession
66+
```swift
67+
let reader = JSONFeedReader()
68+
reader.read(string: "https://jsonfeed.org/feed.json") { (feed, error) in
69+
if let error = error {
70+
//bad things happened
71+
}
72+
73+
if let feed = feed {
74+
//good things happened
75+
}
76+
}
77+
```
78+
79+
Using custom implemenation of URLSession (example: for unit testing)
80+
```swift
81+
let reader = JSONFeedReader(session: SomeCustomURLSession)
82+
reader.read(string: "https://jsonfeed.org/feed.json") { (feed, error) in
83+
if let error = error {
84+
//bad things happened
85+
}
86+
87+
if let feed = feed {
88+
//good things happened
89+
}
90+
}
91+
```

0 commit comments

Comments
 (0)