BarryDuggan
BarryDuggan
@mycroftcanner I'm learning about repository pattern in swift. My understanding isnt good enough yet to understand this discussion fully. Not to take away from the great work done in this...
For anybody else that comes lands here from google, the correct way to write the PUT request is ``` putClient.beginRequest(); putClient.put(endpoint); putClient.sendHeader("Content-Type", "application/json"); putClient.sendHeader("Authorization", "Basic abc"); putClient.sendHeader("Content-Length", String(jsonString.length())); putClient.beginBody(); putClient.print(jsonString);...