I have a pretty standard authenticate method

  private

  def authenticate_user
    @current_user = User.find_by_authentication_token(params[:token])
    unless @current_user
      error = { :error => "Invalid token." }
      respond_with(error, :status => 401 )
    end
  end

I am calling the API to ensure the authenticate fails.

I get an error stating

ArgumentError (Nil location provided. Can't build URI.):
  app/controllers/api/v1/base_controller.rb:13:in `authenticate_user'

What am I doing wrong?

link|improve this question

Is this the code in base_controller.rb? Which line is line 13? – Jordan Oct 20 '11 at 6:48
The method is private so we need to know where/how it is called. Please show how/where you are calling this method in the controller. – Michael Durrant Nov 15 '11 at 12:42
feedback

1 Answer

up vote 1 down vote accepted

By the specific flavor of your error, I am guessing that "authenticate_user" is called as part of a "create" action.

If that is the case, I believe the answer I provided here will help you as well.

Assuming, however, that this is part of creating an authenticated session, meaning there is no actual location for the newly created "resource", I would supply nil for the response location, as in:

...
respond_with(error, :status => 401, :location => nil)
...

That will make more sense once you have a look at the linked answer. If it still doesn't make sense, I'll be happy to clarify.

link|improve this answer
this helped me, thanks. – ktkaushik Apr 20 at 6:56
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.