Spree's Rest API add authentication API.
$ /api/users/sign_up
$ /api/users/sign_in
$ curl -v -H "Accept: application/json" -H "Content-type: application/json" -X POST -d ' {"user":{"email":"[email protected]", "password":"camelmasa", "password_confirmation":"camelmasa"}}' http://localhost:3000/api/users/sign_up
$ curl -v -H "Accept: application/json" -H "Content-type: application/json" -X POST -d ' {"user":{"email":"[email protected]", "password":"camelmasa"}}' http://localhost:3000/api/users/sign_in
Coding now.
Copyright (c) 2012 Masahiro Saito, released under the New BSD License
Updated to support Spree v2.4.1 by Sanad Liaquat ([email protected])