As you may have guessed from the title, I'm trying to use OmniAuth to get my users' current Facebook statuses (for a new opt-in feature). I've passed the necessary scope option into the provider method, inside the omniauth initializer. I know that's a mouthful, sorry. This code should help:
Rails.application.config.middleware.use OmniAuth::Builder do
provider :facebook, ENV['FACEBOOK_ID'], ENV['FACEBOOK_SECRET'], { scope: 'user_status' }
end
I know that part works, because during the OAuth dialogue, Facebook prompts the user to allow access to their status message. So, the problem is I'm expecting their status to be returned in the Auth Hash, with the rest of the user info, but it's just not there.
def callback
raise request.env['omniauth.auth'].to_yaml
end
Yes, that's oversimplified, but I figure you don't care about my before_filters etc.
I've googled around for about 2hrs now, and all of the examples that I found were really contrived. The ones that covered scope only mentioned how to request permission, but not how to actually get the data.
There was a similar unanswered question here on SO, but it's so old, that I didn't think it was a good idea to resurrect it.
I'd appreciate any help. Thanks!
July 3rd Update:
Thanks for your help! I've taken your advice and used the token from the auth hash to request the user's current status like so:
FbGraph::User.me(@auth[:credentials][:token]).posts.first.message
For future readers: It's important to note that the token expires in about 2 months time, and every time the user changes their password. You may want to notify your users when their token is close to expiration. From what I could glean in the FB docs, the expiration date is expressed in the form of a Unix Timestamp. You can convert that to something more useful to like a Ruby DateTime like so:
expires_at = Time.at(@auth[:credentials][:expires_at]).to_datetime
Then, you can save the token in your model and call past? on it to make sure your app doesn't try to use invalid tokens.
do_something unless expires_at.past?
