I am getting the user's facebook image with:
https://graph.facebook.com/#{omniauth.uid}/picture?type=large
But how can I check if that is the Facebook Default image? If it is, I have my own image I would like to use.
I am using Ruby on Rails and Omniauth. So if Omniauth provides anything that would help this situation, let me know.
UPDATE
When I go to my own page using the link above, but my User ID, if I have no profile image set, I get redirected to this file.
https://fbcdn-profile-a.akamaihd.net/static-ak/rsrc.php/v2/yL/r/HsTZSDw4avx.gif
I had a friend also check, and he got the same page.
So I could "temporarily" check against that filename, but clearly that would be a horrible practice. If Facebook changes their default image, everything fails. Any flag to tell me if the user has an image set or not?