Skip to content

Routing

Sri Vishnu Totakura edited this page Apr 14, 2018 · 2 revisions

Mount the engine in config/routes.rb.

  # config/routes.rb

  Rails.application.routes.draw do
    ...
    mount Alexa::Engine, at: "/alexa"
  end

Will add the following route:

POST https://<your-domain>/alexa/intent_handlers

This has to be provided as the HTTPS endpoint URL for the skill.

Clone this wiki locally