I have devise for authentication and also i have added omniauth for facebook and twitter and now what i need is allow the user to login from iphone app
curl -H 'Content-Type: application/json' -H 'Accept: application/json' -X POST http://localhost:3000/users/sign_in -d "{'user' : { 'email' : 'sample@gmail.com', 'password' : 'xxxxxxxx'}}"
it gives out the token and user email if it is valid and incase not valid user it displays
{"error":"Invalid email or password"}
similarly how can i send the facebook id and password to check whether the user is valid or not?