Skip to content

damienh/restful-json-api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

RESTFUL-JSON-API

This API is built using Rails-API. For more information on Rails-API visit https://github.com/rails-api/rails-api.

Getting Started

This app was built and tested using Ruby 2.0.0 and Rails 4.1.1 within a OSX 10 environment I recommend you use RVM https://rvm.io/ to manage your gemsets.

In terminal run:

git clone https://github.com/damienh/restful-json-api.git

once you have moved into the restful-json-api directory run:

bundle install

you will then want to create the database and then seed for some sample data

rake db:migrate
rake db:seed

You are now good to go. You can start making requests. Here are some examples via the terminal with curl.

In order to do this you will need run:

rails server

Example Requests

GET

curl -i -H "Accept: application/json" "localhost:3000/api/v1/users/{"1"}"

POST

curl -v -H "Accept: application/json" -H "Content-type: application/json" -X POST -d ' {"user":{"username":"alan","email":"[email protected]","password":"Xds6-x1c"}}'  http://localhost:3000/api/v1/users

DELETE

curl -X DELETE -H "Accept: application/json"  -H "Content-Type: application/json" -H 'Authorization: Token token="foobar"' "localhost:3000/api/v1/users/{"1"}"

For more information on requests and their expected HTTP codes and responses visit https://github.com/damienh/restful-json-api/wiki/HTTP-Status-and-Responses

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages