Is there any way I can create/log in user with omniauth gem if I know only his facebook token?
I have token saved in database for users wich already logged in before from my app, but the token goes from iOS application wich needs logged user as response.
There are two possibilities: a) user is in database - I will find him by id, log him in and return logged user (this works fine no automagic need to be done) b) user is not in database - I need get his data from facebook but i have only his token. Then I need to create him and log him in, then he can be returned.