0
Bir istekte bulunmak için Faraday'a gidiyorum. Talebi kaldırmak için FakeWeb kullanıyorum. dosyanınNeden bu Ruby koduyla Net :: HTTPBadResponse alıyorum?
HTTP/1.1 200 OK
Content-Type: application/json
Date: Sun, 20 Mar 2016 05:24:04 GMT
Transfer-Encoding: chunked
{
"notices": [
{
"id": "1",
"projectId": 1,
"groupId": "1696170",
"createdAt": "2014-10-22T03:00:00.407Z"
},
{
"id": "2",
"projectId": 1,
"groupId": "1234",
"createdAt": "2014-10-22T03:00:00.407Z"
}
],
"count": 2
}
hata ben notices.json
Faraday kodu
middleware = [
Faraday::Request::UrlEncoded,
AirbrakeAPI::Middleware::RaiseResponseError,
FaradayMiddleware::Mashify,
FaradayMiddleware::ParseXml,
AirbrakeAPI::Middleware::ScrubResponse,
AirbrakeAPI::Middleware::RaiseServerError]
@connection ||= Faraday.new(default_options.deep_merge(connection_options)) do |builder|
middleware.each { |mw| builder.use *mw }
builder.adapter :net_http
builder.response :json, :content_type => /\bjson$/
fakeweb kodu
DEFAULTS = {:content_type => "application/json; charset=utf-8", :status => ["200", "OK"]}
def fixture_request(verb, url, file)
FakeWeb.register_uri(verb, url, DEFAULTS.merge(:response => File.join(File.dirname(__FILE__), 'fixtures', file)))
end
fixture_request :get, "http://example.com/notices.json", 'notices.json'
olsun: notices.json dosyasında
# Net::HTTPBadResponse:
# wrong header line format
, ben satırları 1-4 kaldırırsanız (hat 1 = HTTP/1.1 200 OK), sonra hala bu hatayı alıyorum:
# Net::HTTPBadResponse:
# wrong status line: "{"