lib/authlogic_connect/oauth/tokens/yahoo_token.rb in authlogic-connect-0.0.3.6 vs lib/authlogic_connect/oauth/tokens/yahoo_token.rb in authlogic-connect-0.0.3.8
- old
+ new
@@ -1,12 +1,19 @@
# https://developer.apps.yahoo.com/dashboard/createKey.html
+# https://developer.apps.yahoo.com/projects
# http://developer.yahoo.com/oauth/guide/oauth-accesstoken.html
+# http://developer.yahoo.com/oauth/guide/oauth-auth-flow.html
+# http://code.google.com/apis/gadgets/docs/oauth.html
+# http://developer.yahoo.com/social/rest_api_guide/web-services-guids.html
+# A GUID identifies a person
+# http://social.yahooapis.com/v1/me/guid
class YahooToken < OauthToken
- version 2
+ # http://social.yahooapis.com/v1/me/guid
+ key :xoauth_yahoo_guid
settings "https://api.login.yahoo.com",
:request_token_path => '/oauth/v2/get_request_token',
:access_token_path => '/oauth/v2/get_token',
:authorize_path => '/oauth/v2/request_auth'
-end
\ No newline at end of file
+end