Class: Ubiquitously::MySpace::Account
- Inherits:
-
Service::Account
- Object
- Base
- Service::Account
- Ubiquitously::MySpace::Account
- Defined in:
- lib/ubiquitously/services/my_space.rb
Instance Attribute Summary
Attributes inherited from Service::Account
#credentials, #ip, #logged_in, #password, #user, #username
Instance Method Summary collapse
Methods inherited from Service::Account
#access_token, #agent, #cookies?, #credentials?, #initialize
Methods included from Account::Authorizable
Methods included from Account::Loggable
Methods included from Account::Restful
Methods inherited from Base
Methods included from SubclassableCallbacks
Constructor Details
This class inherits a constructor from Ubiquitously::Service::Account
Instance Method Details
#login ⇒ Object
4 5 6 7 8 9 10 11 12 13 14 15 16 |
# File 'lib/ubiquitously/services/my_space.rb', line 4 def login referer = "http://localhost:4567/" url = MyspaceToken.(referer) page = agent.get(url, [], referer) form = page.forms.detect { |form| form.form_node["id"] == "login_form" } form["email"] = username form["pass"] = password page = form.submit # do something with the oauth token, save it in the cookie? (page.uri !~ /http:\/\/login\.facebook\.com\/login\.php/i) end |