Sha256: 7bc9e5957fa10e0138dda44d5f0b1407cd36fe98356e4d7a38d2aa5784d359d4

Contents?: true

Size: 1.27 KB

Versions: 1

Compression:

Stored size: 1.27 KB

Contents

module Ubiquitously
  module Facebook
    class Account < Ubiquitously::Service::Account
      uses :oauth
      
      def login
        had_cookies = cookies?
        url = "http://localhost:4567/"
        authorize_url = FacebookToken.authorize(url)
        page = agent.get(authorize_url, [], url)
        
        # only login if we don't have cookies
        unless had_cookies
          form = page.forms.detect { |form| form.form_node["id"] == "login_form" }
          form["email"] = username
          form["pass"] = password
          begin
            page = form.submit
          rescue Exception => e
            puts e.inspect
          end
        end
        
        location = URI.parse(page.response.to_hash["location"].to_a.first)
        code = Rack::Utils.parse_query(location.query)["code"]
        
        # do something with the oauth token, save it in the cookie?
        self.credentials = FacebookToken.access(:secret => code, :callback_url => url)
        
        authorize!(page.uri !~ /http:\/\/login\.facebook\.com\/login\.php/i)
      end
    end
    
    class Post < Ubiquitously::Service::Post
      def create
        access_token.post("https://graph.facebook.com/me/feed", {
          "message" => token[:description]
        })
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ubiquitously-0.1.0 lib/ubiquitously/services/facebook.rb