我正在使用rails构建一个Web应用程序,并通过yelp api gem使用yelp api。 api工作到昨天,我收到了这个错误:
require 'yelp'
class YelpService
def get_detail(id)
begin
yelp_client = Yelp::Client.new({ consumer_key: 'my-consumer-key',
consumer_secret: 'mysecret',
token: 'my-token',
token_secret: 'mytoken-secret'
})
Rails.logger.info "yelp client #{yelp_client}"
Rails.logger.info "id #{id}"
yelp_response = yelp_client.business(id)
Rails.logger.info "yelp response #{yelp_response}"
if yelp_response
return yelp_response.rating_img_url
else
Rails.logger.info "Error in yelp client call"
end
rescue Exception => e
# Mandrill errors are thrown as exceptions
Rails.logger.info "Error occurred in yelp service: #{e.class} - #{e.message}"
return "none"
end
end
private
attr_reader :id
end
我还没有改变任何代码。
这是我的yelp服务:
DAO.Recordset.GetRows
我尝试更改mandrill键,但没有效果。请帮我解决这个问题。
答案 0 :(得分:-1)