You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 16, 2018. It is now read-only.
I've not come across this issue before; the functional tests work OK. NSDictionary payloads are sent as form-encoded data; is this what your server is expecting?
It seems there is no HTTP Body when sending a simple post (iOS 5.0.1)
NSDictionary *params = [NSMutableDictionary dictionary];
[(NSMutableDictionary *)params setObject:@"Joe Bloggs" forKey:@"name"];
[(NSMutableDictionary *)params setObject:@"[email protected]" forKey:@"email"];
[[LRResty client] post:url payload:params
withBlock:^(LRRestyResponse *response){}];
On the server side, no HTTP request body is received.
Tried both with current master and arcified branches.
The text was updated successfully, but these errors were encountered: