Skip to content
/ browsah Public

this is not a HTTP request lib like the ones you see around, it is REAL BROWSAH!

License

Notifications You must be signed in to change notification settings

abril/browsah

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

34 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

It's a REAL BROWSAH!!!1!

Build Status

Unlike other HTTP client libraries, browsah aims to be a true browser.

fair warning: Since browsah depends on em-http-request and em-synchrony, thus is Ruby 1.9.x only.

Examples

For more examples, see examples.

Simple POST/GET:

require 'browsah'
require 'json'

headers = { 'Content-Type' => 'application/json' }
body    = { "longUrl" => "http://engineering.abril.com.br" }.to_json
bw      = Browsah.new('https://www.googleapis.com')

bw.post '/urlshortener/v1/url', :body => body, :headers => headers do |r|
  r.on(200) do
    parsed = JSON.parse(r.body)
    jj parsed
  end
end

bw.get '/urlshortener/v1/url?shortUrl=http://goo.gl/TT1LT' do |r|
  r.on(200) do
    parsed = JSON.parse(r.body)
    jj parsed
  end
end

License

MIT License. Copyright (c) 2011 Abril Midia.

See LICENSE for details.

About

this is not a HTTP request lib like the ones you see around, it is REAL BROWSAH!

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •  

Languages