Skip to content

Instantly share code, notes, and snippets.

@normand1
Last active September 23, 2019 04:11
Show Gist options
  • Save normand1/588e8fd78013a6df89cb4038913e0f20 to your computer and use it in GitHub Desktop.
Save normand1/588e8fd78013a6df89cb4038913e0f20 to your computer and use it in GitHub Desktop.
weatherapiexample.swift
private func fetchWeatherForZipCode(zipCode: String) -> Promise<OpenWeatherModel> {
let zipCodeQuery = URLQueryItem(name: "zip", value: "\(zipCode.trimmingCharacters(in: .whitespacesAndNewlines)),us")
return APIManager().sendRequest(queries: [zipCodeQuery])
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment