skip to Main Content

I try post string request but its not working my code – Ios swift

ı try to send string request but its not work var request = URLRequest(url: url) request.httpMethod = "POST" let parameters = "{"Language": "tr","ProcessType": 1,"Username": "(self.mailTextField.text ?? "")","Password": "(self.passwordTextField.text ?? "")"}" print(parameters) let enUrlParams = try! parameters.aesEncrypt(key: LoginConstants.xApiKey, iv: LoginConstants.IV) print(enUrlParams)…

VIEW QUESTION
Back To Top
Search