class Flickr::OAuth::AccessToken
Attributes
user_info[R]
Holds user’s information after authentication.
@example
{ fullname: "Janko Marohnić", user_nsid: "78733179@N04", username: "@janko-m" }
Public Class Methods
new(key, secret, user_info)
click to toggle source
@private
Calls superclass method
Flickr::OAuth::Token::new
# File lib/flickr/oauth.rb, line 110 def initialize(key, secret, user_info) super(key, secret) @user_info = user_info end