8000 GitHub - XeroX/agent: Minimalistic Swift HTTP request agent for iOS and OS X
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

XeroX/agent

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Agent

Minimalistic Swift HTTP request agent for iOS and OS X.

Introduction

This is a tiny framework that gives you nice a API for crafting an HTTP request.

Usage

GET

Agent.get("http://google.com", { (agent: Agent, response: NSURLResponse) -> () in
  println(response)
})
let req = Agent.get("http://apple.com")
req.end({ (agent: Agent, response: NSURLResponse) -> () in
  println(response)
})

About

Minimalistic Swift HTTP request agent for iOS and OS X

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published
0