Rails for API only applications (>3.2)
I'm writing a Rails 4 app that will expose an API for a mobile app that's yet to be developed. Users …
ruby-on-rails ruby-on-rails-4 rails-apiI would like to restrict requests to all API controllers to being redirected to the JSON path. I would like …
ruby-on-rails json redirect restriction rails-apiI'm building a simple api with Rails API, and want to make sure I'm on the right track here. I'm …
ruby-on-rails api authentication devise rails-apiI'm trying to write an Ember application in Rails 4, and have decided to go with rails-api for the api controllers, …
ruby-on-rails ruby-on-rails-4 rails-apiI have an application developed in Rails and I am trying to see the attributes in the HTTP header. Is …
ruby-on-rails ruby rails-apiIn my config/application.rb file, I have this code, config.action_dispatch.default_headers = { 'Access-Control-Allow-Origin' => '*', 'Access-Control-Request-Method' =&…
ruby-on-rails ajax cors rails-apiI have referred this link to create my own api but facing an routing error since this is the first …
ruby-on-rails ruby-on-rails-4 rails-apiI am using Rails 5 to create a JSON Api. My controller uses strong parameters with one require attribute like this: …
ruby-on-rails ruby strong-parameters rails-api ruby-on-rails-5I am using devise (latest version - 3.2.0) with rails (latest version - 4.0.1) I'm doing simple authentication (without ajax or api) …
ruby-on-rails ruby-on-rails-4 devise csrf rails-apiI make API in rails. For normal authentication we use devise but in API how to implement devise for authentication. …
ruby-on-rails ruby ruby-on-rails-4 devise rails-api