-
-
Save larsthegeek/1265271 to your computer and use it in GitHub Desktop.
Simple bit.ly API class in Ruby
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'httparty' | |
class Api::Bitly | |
include HTTParty | |
base_uri 'api.bit.ly' | |
basic_auth 'username', 'password' | |
format :json | |
def self.shorten(url) | |
response = get('/shorten', :query => required_params.merge(:longUrl => url)) | |
response['results'][url]['shortUrl'] | |
end | |
def self.required_params | |
{:version => "2.0.1"} | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment