Last active
May 27, 2019 05:26
-
-
Save MaatheusGois/0c7086cf1e28a0347e0405a81146d620 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Não esqueca de importar o Foundation | |
func postRequest(url: String, params: [String: String], | |
completion: @escaping ([String: Any]?, Error?) -> Void){ | |
//URL válida | |
guard let URL = URL(string: url) else { | |
completion(nil, nil) | |
return | |
} | |
//Cria a representacão da requisição | |
let request = NSMutableURLRequest(url: URL) | |
//Converte as chaves em valores pares para os parametros em formato de String | |
let postString = params.map { "\($0.0)=\($0.1)" }.joined(separator: "&") | |
//Atribui à requisiçāo o método POST | |
request.httpMethod = "POST" | |
//Codifica o corpo da mensagem em "data" usando utf8 | |
request.httpBody = postString.data(using: String.Encoding.utf8) | |
//Cria a tarefa de requisição | |
let task = URLSession.shared.dataTask(with: request as URLRequest) { | |
(data, response, error) in | |
do { | |
if let data = data { | |
//A resposta chegou | |
let response = try JSONSerialization.jsonObject(with: data, options: []) | |
completion(response as? [String : Any], nil) | |
} | |
else { | |
//Não houve resposta | |
completion(nil, nil) | |
} | |
} catch let error as NSError { | |
//Houve um erro na comunicao com o servidor | |
completion(nil, error) | |
} | |
} | |
//Aciona a tarefa | |
task.resume() | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment