https://github.com/badchoice/rvhttp
Dead simple HTTP requests for objective-c / swift
https://github.com/badchoice/rvhttp
Last synced: about 1 year ago
JSON representation
Dead simple HTTP requests for objective-c / swift
- Host: GitHub
- URL: https://github.com/badchoice/rvhttp
- Owner: BadChoice
- License: mit
- Created: 2017-06-27T08:49:53.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2019-10-18T14:07:42.000Z (over 6 years ago)
- Last Synced: 2025-04-20T03:45:32.484Z (about 1 year ago)
- Language: Objective-C
- Size: 43 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# RVHttp
#### Super easy HTTP
```
[RVHttp get:@"https://httpbin.org/get" params:@{@"name" : @"Jordi"} headers:@{@"Custom-Header": @"header-value"} completion:^(RVHttpResponse *response) {
NSDictionary* responseDict = response.toDictionary;
}];
```