require 'rubygems' | |
require 'httpi' | |
require 'curb' | |
# at some point before the request is made you'll need a kerberos ticket | |
# i.e., kinit -k -t ticket_path | |
image_path = "/tmp/some_image.jpg" | |
url = URI.escape("https://some_ssl_spnego_url.com/upload_file_here") | |
HTTPI.adapter = :curb | |
req = HTTPI::Request.new | |
req.url = url | |
# add the file to the body as a PostField | |
req.body = Curl::PostField.file("image", image_path){IO.read(image_path)} | |
# use spnego when in prod and devserver | |
req.auth.gssnegotiate | |
resp = HTTPI.post req do |http| | |
http.use_ssl | |
http.multipart_form_post = true | |
end | |
if resp.code == 200 | |
puts "Successfully uploaded image." | |
else | |
puts "Error .... :(" | |
end |
This is explained in detail at VIN API's site, but I will give you a look at what it does here.
If you use Ruby on Rails like I do, then you have the option to use ActiveResource:
class VinApi < ActiveResource::Base | |
headers["X-VinApiKey"] = "YOUR_API_KEY_GOES_HERE" | |
self.site = "http://vinapi.skizmo.com" | |
self.element_name = "vin" | |
end |
Right now each account is limited to 20 VIN requests a month, we are looking to take it slow and prevent abuse. If you do need more VIN decodings a month, feel free to let us know at Mr. Quotey, we'd be happy to up the max for your account.
It is too soon to really tell. We'd like your feedback and to know if this service is useful. If it gets enough buzz, we would probably pursue it a bit more and drop the monthly limitations.
]]>