Skip to content

Instantly share code, notes, and snippets.

@zlu
Created July 1, 2009 22:44
Show Gist options
  • Save zlu/139126 to your computer and use it in GitHub Desktop.
Save zlu/139126 to your computer and use it in GitHub Desktop.
require 'rubygems'
require 'open-uri'
require 'curb'
api_access_key = "xxx"
url = "http://voicemail.alpha.orange-api.net/voicemail/updateAnnouncement.xml"
c = Curl::Easy.new url
c.multipart_form_post = true
c.http_post Curl::PostField.file('sound', './tt-monkeys.wav'), Curl::PostField.content('id', "#{api_access_key}")
p c.body_str
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment