Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

iOS Build a Restaurant Reviews App Authorization With Third Party Libraries Saving to the Keychain

Deysha Rivera
Deysha Rivera
5,088 Points

Changing the endpoint to use API Key

I am confused as to how to finish the function at the end. It says "Do the usual stuff!" and it is just not intuitive for me yet.

class YelpAPIClient {
    var apiKey: String {
        // ideally fetched from keychain or somewhere secure
        return "sample_key"
    }

    let session: URLSession

    init(session: URLSession) {
        self.session = session
    }

    func searchBusinesses() {
        let endpoint = Yelp.business(id: "abcdefg")
        // Inside the client, when we retrieve the request object from the endpoint, we're
        // passing in the apiKey
        let request = endpoint.request(withApiKey: apiKey)

        // Do the usual stuff!
    }
}