Skip to content
This repository has been archived by the owner on Nov 4, 2022. It is now read-only.

authorize_token! method #2

Open
ghost opened this issue Oct 8, 2011 · 0 comments
Open

authorize_token! method #2

ghost opened this issue Oct 8, 2011 · 0 comments

Comments

@ghost
Copy link

ghost commented Oct 8, 2011

returns always RubyPicasa::PicasaTokenError, 'The request to upgrade to a session token failed.'
I think you should replace /accounts/accounts/ by /accounts/ in http request. It's works for me

def authorize_token!
http = Net::HTTP.new("www.google.com", 443)
http.use_ssl = true
response = http.get('/accounts/accounts/AuthSubSessionToken', auth_header)
token = response.body.scan(/Token=(.*)/).flatten.compact.first
if token
@token = token
else
raise RubyPicasa::PicasaTokenError, 'The request to upgrade to a session token failed.'
end
@token
end

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

0 participants