I wanted to perform a POST request to my rails backend from my iPhone app. However, I don't have access to the authenticity token, which prevents me from performing this operation. I was looking through some resources on the internet and I found these slides.
On page 19, the author says that this problem is solved either by disabling the authenticity token or by using db based sessions.
Following the instructions on this question I have already set my rails application to use the db based sessions. But I don't understand how I can bypass the authenticity token with this technique. Can anyone explain that to me?
Thanks