I am trying to make a RESTful service out of a Rails server. I have looked at tutorials online and apparently I am doing something wrong. My error is a CORS problem. I have a User model and controller. In my user controller I am trying to change the headers to allow any site to be able to pull information from the server.
class UsersController < ApplicationController
def options
if access_allowed?
set_access_control_headers
head :ok
else
head :forbidden
end
end
private
def set_access_control_headers
# headers['Access-Control-Allow-Origin'] = request.env['HTTP_ORIGIN']
headers['Access-Control-Allow-Origin'] = '*'
headers['Access-Control-Allow-Methods'] = 'POST, GET, OPTIONS'
headers['Access-Control-Max-Age'] = '1000'
headers['Access-Control-Allow-Headers'] = '*,x-requested-with'
end
def access_allowed?
allowed_sites = '*' #you might query the DB or something, this is just an example
return allowed_sites.include?(request.env['HTTP_ORIGIN'])
return true
end
end
I have also set up my routes to so when the server is hit it goes to the 'options' action.
resources :users, :only => [:create]
match '/users', :controller => 'users', :action => 'options', :via => :get
I have created an html page on my development machine and I am just opening it from Chrome (I dont know if this is an issue or not.) When I try to grab the users, I get
OPTIONS http://www.*****.com:3000/users 404 (Not Found) jquery.js:3
XMLHttpRequest cannot load http://www.****.com:3000/users. Origin file:// is not allowed by Access-Control-Allow-Origin.
Someone please let me know what I am doing wrong or point me in a direction that can help me.