I use devise for authentication in my web application and my web application also responds to iphone applications. So far i have done only authentication and so when the iphone app sends the username and password as
http://localhost:3000/login.json -d "{'user' : { 'username' : 'sample@yahoo.co.in','password' : 'password'}}"
the response would be
{"user":{"authentication_token":"LayzZw3s3gsNMFRJp1JR","email":"sample@yahoo.co.in","username":"sample@yahoo.co.in"}}
but now i need to create friendships between user from iphone application i.e., the user have to send friend request to another user through api and the another user should receive a request
After the user accepts the request the user should be added to the friend list of both users and the friends of the user should be displayed when the user needs by calling api
How can i do this? Please help me.