Pregunta

Estoy tratando de hacer una solicitud a un servicio web ( fwix ), y en mis rielesAplicación He creado el siguiente inicializador, que funciona ... Sorta, tengo dos problemas sin embargo:

  1. Por alguna razón, los valores de los parámetros deben tener + como los espacios, ¿es esto una cosa estándar que puedo lograr con Ruby?Además, ¿es esta una forma estándar de formar una URL?Pensé que los espacios eran %20.

  2. En mi código, ¿cómo puedo tomar alguna de las opciones enviadas y simplemente usarlas en lugar de tener que indicar a cada uno como query_items << "api_key=#{options[:api_key]}" if options[:api_key]

    El siguiente es mi código, el área de problemas que estoy teniendo son las líneas que comienzan con query_items para cada parámetro en el último método, ¡cualquier idea sería increíble!

    require 'httparty'
    module Fwix
      class API
        include HTTParty
    
        class JSONParser < HTTParty::Parser
          def json
            JSON.parse(body)
          end
        end
    
        parser JSONParser
        base_uri "http://geoapi.fwix.com"
    
        def self.query(options = {})
          begin
            query_url = query_url(options)
            puts "querying: #{base_uri}#{query_url}"
            response = get( query_url )
          rescue
            raise "Connection to Fwix API failed" if response.nil?
          end
        end
    
        def self.query_url(input_options = {})
          @defaults ||= {
            :api_key => "my_api_key",
          }
    
          options = @defaults.merge(input_options)
          query_url = "/content.json?"
          query_items = []
          query_items << "api_key=#{options[:api_key]}" if options[:api_key]
          query_items << "province=#{options[:province]}" if options[:province]
          query_items << "city=#{options[:city]}" if options[:city]
          query_items << "address=#{options[:address]}" if options[:address]
    
          query_url += query_items.join('&')
          query_url
        end
      end
    end
    

¿Fue útil?

Solución

def self.query_url(input_options = {})
  options = {
    :api_key => "my_api_key",
  }.merge(input_options)

  query_url = "/content.json?"
  query_items = []

  options.each { |k, v| query_items << "#{k}=#{v.gsub(/\s/, '+')}" }

  query_url += query_items.join('&')
end

Otros consejos

For 1) You API provider is expecting '+' because the API is expecting in a CGI formatted string instead of URL formatted string.

require 'cgi'
my_query = "hel lo"
CGI.escape(my_query)

this should give you

"hel+lo" 

as you expect

for Question 2) I would do something like

query_items = options.keys.collect { |key| "#{key.to_s}=#{options[key]}" }

I'm a developer at Fwix and wanted to help you with your url escaping issue. However, escaping with %20 works for me:

wget 'http://geoapi.fwix.com/content.xml?api_key=mark&province=ca&city=san%20francisco&query=gavin%20newsom'

I was hoping you could provide me with the specific request you're making that you're unable to escape with %20.

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top