Я следую учебному пособию https://medium.com/ruby-on-rails-development/google-places-gem-21e9e1aac491 и испытываю затруднения при интеграции гема Google Адресов с моим кодом для получения отзывов Google для моего приложения. Я включил Google мест и получил соответствующий ключ API. Я также включил бизнес-аккаунт и подписался на 1-месячную бесплатную пробную версию. Однако сейчас я получаю это сообщение.
You must enable Billing on the Google Cloud Project at console.cloud.google.com/project/_/billing/enable Learn more at developers.google.com/maps/gmp-get-started.
doctor_controller.rb
def show
@doctor = Doctor.find(params[:id])
authorize @doctor, :manage?
@doctor = @location = @doctor.decorate
#tring out google reviews
api_key = "My_key"
@client = GooglePlaces::Client.new(api_key)
end
show. html .erb
<h1><%= @client.spots(-33.8670522, 151.1957362, :name => 'italian') %></h1>
заранее спасибо, ура