Module: Googl

Extended by:
Googl
Included in:
Googl
Defined in:
lib/googl.rb,
lib/googl/base.rb,
lib/googl/utils.rb,
lib/googl/expand.rb,
lib/googl/request.rb,
lib/googl/shorten.rb,
lib/googl/client_login.rb,
lib/googl/oauth2/utils.rb,
lib/googl/oauth2/native.rb,
lib/googl/oauth2/server.rb

Defined Under Namespace

Modules: OAuth2, Utils Classes: Base, ClientLogin, Expand, Request, Shorten

Instance Method Summary collapse

Instance Method Details

#client(email, passwd) ⇒ Object

The Google URL Shortener API ClientLogin authentication.

client = Googl.client('[email protected]', 'my_valid_password')

url = client.shorten('https://github.com/zigotto/googl')
url.short_url
=> http://goo.gl/DWDfi

Go to goo.gl to see URL statistics.



104
105
106
# File 'lib/googl.rb', line 104

def client(email, passwd)
  Googl::ClientLogin.new(email, passwd)
end

#expand(url = nil, options = {}) ⇒ Object

Expands a short URL or gets creation time and analytics

url = Googl.expand('http://goo.gl/ump4S')
url.long_url
=> "http://www.zigotto.com/"

For analytics and additional information to return (using the :projection parameter)

* :full => returns the creation timestamp and all available analytics
* :analytics_clicks => returns only click counts
* :analytics_top_strings => returns only top string counts (e.g. referrers, countries, etc)

url = Googl.expand('http://goo.gl/DWDfi', :projection => :full)

url.analytics.all_time.browsers.first.label
=> "Chrome"
url.analytics.all_time.browsers.first.count
=> "11"

A summary of the click analytics for the short and long URL

url.analytics

Analytics details for a particular window of time; counts in this object are of clicks that occurred within the most recent window of this length.

url.analytics.all_time
url.analytics.month
url.analytics.week
url.analytics.day
url.analytics.two_hours

Number of clicks on this short URL. Replace (*) for all_time, month, week, day or two_hours

url.analytics.*.short_url_clicks

Number of clicks on all goo.gl short URLs pointing to this long URL.

url.analytics.*.long_url_clicks

Top referring hosts, e.g. “www.google.com”; sorted by (descending) click counts. Only present if this data is available.

url.analytics.*.referrers

Top countries (expressed as country codes), e.g. “US” or “DE”; sorted by (descending) click counts.

url.analytics.*.countries

Top browsers, e.g. “Chrome”; sorted by (descending) click counts.

url.analytics.*.browsers

Top platforms or OSes, e.g. “Windows”; sorted by (descending) click counts.

url.analytics.*.platforms

For mor details, see code.google.com/intl/pt-BR/apis/urlshortener/v1/reference.html#resource_url

Raises:

  • (ArgumentError)


88
89
90
91
92
# File 'lib/googl.rb', line 88

def expand(url=nil, options={})
  raise ArgumentError.new("URL to expand is required") if url.nil? || url.strip.empty?
  options = {:shortUrl => url, :projection => nil}.merge!(options)
  Googl::Expand.new(options)
end

#shorten(url = nil) ⇒ Object

Creates a new short URL

url = Googl.shorten('http://www.zigotto.com')
url.short_url
=> "http://goo.gl/ump4S"

Raises:

  • (ArgumentError)


26
27
28
29
# File 'lib/googl.rb', line 26

def shorten(url=nil)
  raise ArgumentError.new("URL to shorten is required") if url.nil? || url.strip.empty?
  Googl::Shorten.new(url)
end