Skip to content

Latest commit

 

History

History
20 lines (13 loc) · 695 Bytes

README.md

File metadata and controls

20 lines (13 loc) · 695 Bytes

Spree Api Auth

Spree's Rest API add authentication API.

$ /api/users/sign_up.json
$ /api/users/sign_in.json

Example

$ curl -v -H "Accept: application/json" -H "Content-type: application/json" -X POST -d ' {"user":{"email":"camelmasa@gmail.com", "password":"camelmasa", "password_confirmation":"camelmasa"}}' http://localhost:3000/api/users/sign_up.json
$ curl -v -H "Accept: application/json" -H "Content-type: application/json" -X POST -d ' {"user":{"email":"camelmasa@gmail.com", "password":"camelmasa"}}' http://localhost:3000/api/users/sign_in.json

Testing

Coding now.

Copyright (c) 2012 Masahiro Saito, released under the New BSD License