Class: FbGraph::Auth::Cookie
- Inherits:
-
Object
- Object
- FbGraph::Auth::Cookie
- Defined in:
- lib/fb_graph/auth/cookie.rb
Overview
NOTE: If you want access token, use FbGraph::Auth.new(APP_ID, APP_SECRET, :cookie => ..) instead
Class Method Summary collapse
Class Method Details
.parse(client, cookie) ⇒ Object
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
# File 'lib/fb_graph/auth/cookie.rb', line 8 def self.parse(client, ) = if .is_a?(Hash) ["fbs_#{client.id}"] else end raise VerificationFailed.new(401, 'Facebook cookie not found') if .blank? .gsub!(/[\\"]/, '') signature, = '', {} .split('&').each do |kv| k, v = kv.split('=') if k == 'sig' signature = v else v = v.to_i if k == 'expires' [k] = v end end signature_base_string = .to_a.sort do |a, b| a[0] <=> b[0] || a[1] <=> b[1] end.map do |(k, v)| "#{k}=#{v}" end.join unless Digest::MD5.hexdigest("#{signature_base_string}#{client.secret}") == signature raise VerificationFailed.new(401, 'Facebook cookie signature invalid') end .with_indifferent_access end |