Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using rack/test and rspec on Rails 3 to authenticate a users api key through devise. Any request I make returns a status of 302 and a response of: "You are being redirected.". Can't seem to figure out how to authenticate.

require 'spec_helper'

describe Api::V1::CollectController do
  def app
    Rails.application
  end 

  context 'user' do
    subject do
      FactoryGirl.create :user
    end

    it 'allow valid api credentials' do
      post '/api/collect', {}, { 'Authentication' => subject.authentication_token }
      p last_response.body
    end
  end
end    
share|improve this question

1 Answer

up vote 0 down vote accepted

I've found a working solution. But I'm not satisfied with why the original approach didn't work. I eliminated rack/test and changed the way I interface with the controller. The following worked. I'm mostly just curious now...

require 'spec_helper'

describe Api::V1::CollectController do
  context 'user' do
    subject do
      FactoryGirl.create :user
    end

    it 'allow valid api credentials' do
      post :create, {}, { 'Authentication' => subject.authentication_token }
      p response.body
    end
  end
end  
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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