Hedwig Youtube Responder
Installation
Add to the deps in mix.exs
def deps do
[
{:hedwig_youtube, "~> 0.1.0"},
]
endConfig
Add the responder to your :responders list in your bot config, config/config.exs
config :my_robot, MyApp.MyRobot,
responders: [
{Hedwig.Responders.Youtube, []},
]Environment variables
YOUTUBE_KEYenvironment variable for your youtube API key
config :hedwig_youtube,
youtube_key: {:system, "YOUTUBE_KEY"}Or, you can override the config, like so:
config :hedwig_youtube,
youtube_key: "abcdefg12345678"