我对 Ruby On Rails 还是有点陌生,我设法连接了一个 youtube API,而不会出现拉取实时流的问题。现在我正在尝试对 Twitch 做同样的事情,我发现了这个 gem https://github.com/mauricew/ruby-twitch-api。我只是对这部分的去向感到困惑
twitch_client = Twitch::Client.new(
client_id: client_id,
client_secret: client_secret,
## this is default
# token_type: :application,
## this can be required by some Twitch end-points
# scopes: scopes,
## if you already have one
# access_token: access_token
)
我已经在 Twitch 上注册了它,并且拥有我的客户 ID 和客户密码。我想首先通过运行它bin/rails c
来测试所有内容。有人有想法么?