How to post an array using Alamofire. Alamofire request takes only Dictionary type as a parameter: [String : Any]
.
But I want to pass an array as a parameter, not Dictionary.
Alamofire.request(url, method: .post, parameters: [String : Any], encoding: JSONEncoding.default, headers: [:])
Is there any way to solve it ..?