NetworkLayer
NetworkLayer copied to clipboard
Network Layer in Swift: Protocol-Oriented Approach
when I am sending email as a parameter it converts "@" into "%2540" in url. example: [email protected] turn into test%2540gmail.com in url. I found the reason is because of double...
This should probably be `T` instead of `String` used as a generic parameter. Example: ``` enum Result { case success(T) case failure(String) } ``` https://github.com/Mackis/NetworkLayer/blob/554b0d15e9b0bea9a88b10546826f4d2f7653ae3/NetworkLayer/Networking/Manager/NetworkManager.swift#L21
After investigating the source code on github to see why I'm getting an issue on my end, the source contains bodyEncoding. What exactly is bodyEncoding? It wasn't mentioned in the...
I really liked the Network layer, but couldn't figure out how to write the upload file?