Skip to content

Instantly share code, notes, and snippets.

@atulkhatri
Created July 12, 2021 17:15
Show Gist options
  • Save atulkhatri/5dfcf14f476474cc2812bac41dba3c36 to your computer and use it in GitHub Desktop.
Save atulkhatri/5dfcf14f476474cc2812bac41dba3c36 to your computer and use it in GitHub Desktop.
tvOS Bootcamp Network Manager 2
private func createRequest(for url: String) -> URLRequest? {
guard let url = URL(string: url) else { return nil }
var request = URLRequest(url: url)
request.httpMethod = "GET"
request.setValue("application/json; charset=utf-8", forHTTPHeaderField: "Content-Type")
return request
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment