class Flickr::OAuth::Token

Attributes

key[R]
secret[R]
token[R]

Public Class Methods

new(key, secret) click to toggle source

@param key [String] @param secret [String]

# File lib/flickr/oauth.rb, line 61
def initialize(key, secret)
  @key, @secret = key, secret
end

Public Instance Methods

to_a() click to toggle source
# File lib/flickr/oauth.rb, line 65
def to_a
  [key, secret]
end