我在RSpec上做了以下get请求:
get "api/posts/#{@post.id}?api_key=#{Settings.api_key.android}&device_token=#{@device.token}&auth_token=#{@user.authentication_token}"
我需要指定标题。
邮递员上的我的标题看起来像这样:https://www.dropbox.com/s/h1qmm9aqwu3xm4i/Screenshot%202015-11-30%2014.41.10.png?dl=0
如何将我的标题添加到RSpec的get请求中?
我试过这个:
get "api/posts/#{@post.id}?api_key=#{Settings.api_key.android}&device_token=#{@device.token}&auth_token=#{@user.authentication_token}", nil, {'ACCEPT' => 'application/vdn.foo.v10'}
没有任何成功。
非常感谢任何帮助。