使用 Rails 的 Messenger bot:设置多个页面
Messenger bot using Rails: setup for multiple pages
我想创建一个供不同用户用于其 Facebook 页面的 Messenger Bot。我创建了一个 rails 应用程序并使用了 facebook-messenger gem.
我成功创建了机器人,当我为一个页面设置时它可以工作。现在,我按照说明让我的机器人在多个 Facebook 页面上运行(参见 "Make a configuration provider" section)。
我是 rails 的新手,我不确定将 class ExampleProvider 放在哪里?我把它放在我的 config/application.rb 文件中:
require_relative 'boot'
require 'rails/all'
# Require the gems listed in Gemfile, including any gems
# you've limited to :test, :development, or :production.
Bundler.require(*Rails.groups)
module BotletterApp
class Application < Rails::Application
# Settings in config/environments/* take precedence over those specified here.
# Application configuration should go into files in config/initializers
# -- all .rb files in that directory are automatically loaded.
config.paths.add File.join('app', 'bot'), glob: File.join('**', '*.rb')
config.autoload_paths += Dir[Rails.root.join('app', 'bot', '*')]
end
class BotProvider < Facebook::Messenger::Configuration::Providers::Base
def valid_verify_token?(verify_token)
bot.exists?(verify_token: verify_token)
end
def app_secret_for()
ENV['APP_SECRET']
end
def access_token_for(page_id)
bot.find_by(user_id: page_id).page_access_token
end
private
def bot
MyApp::Bot
end
end
Facebook::Messenger.configure do |config|
config.provider = BotProvider.new
end
end
然后我有 app/bot/setup.rb 文件来创建机器人。我不知道如何使用我创建的提供程序来代替 ENV 变量?
require "facebook/messenger"
include Facebook::Messenger
Facebook::Messenger::Subscriptions.subscribe(access_token: ENV["ACCESS_TOKEN"])
Facebook::Messenger::Profile.set({
get_started: {
payload: 'GET_STARTED_PAYLOAD'
}
}, access_token: ENV['ACCESS_TOKEN'])
我在 Rails 文档中搜索了如何让它工作,但不幸的是找不到任何东西。
更新:
现在我可以为不同的页面设置机器人了。不幸的是,我的 ConfigProvider 的以下行出现错误:
config/initializers/config_provider.rb
def bot
Rails.application.class.parent::Bot
end
I'm getting the following error:
NameError (uninitialized constant BotletterApp::Bot):
config/initializers/config_provider.rb:17:in bot'
config/initializers/config_provider.rb:7:inapp_secret_for'
你知道我应该如何命名我的应用程序吗?
我的机器人模块:
module BotletterApp
class Application < Rails::Application
# Settings in config/environments/* take precedence over those specified here.
# Application configuration should go into files in config/initializers
# -- all .rb files in that directory are automatically loaded.
config.paths.add File.join('app', 'listen'), glob: File.join('**', '*.rb')
config.autoload_paths += Dir[Rails.root.join('app', 'listen', '*')]
end
end
更新,它适用于 ::Application,这是新文件:
class ConfigProvider < Facebook::Messenger::Configuration::Providers::Base
def valid_verify_token?(verify_token)
ENV['VERIFY_TOKEN']
end
def app_secret_for(page_id)
ENV['APP_SECRET']
end
def access_token_for(page_id)
CoreBot.find_by_page_id(page_id).page_access_token
end
private
def bot
BotletterApp::Application
end
end
Facebook::Messenger.configure do |config|
config.provider = ConfigProvider.new
end
问题是我收到以下错误,除非我的数据库查询似乎有效(它在 rails 控制台中有效):
ActiveRecord::StatementInvalid (SQLite3::SQLException: no such column:
page_id.id: SELECT "core_bots".* FROM "core_bots" WHERE
"page_id"."id" = ? LIMIT ?):
转向答案以提高可读性;)
关于 'plain'... 而不是
def bot
BotletterApp::Application
end
使用
def bot
Bot
end
或(看起来您将包含所有页面的模型命名为 CoreBot(?)(假设您在 /app/models/core_bot.rb
中有一个典型的 ActiveRecord 模型,我假设 Bot
)
def bot
CoreBot
end
那么您应该可以使用 README.md
中的模板代码
至于你最近的问题:似乎 access_token_for
方法是用散列调用的,用 {id: 1}
之类的东西搜索。您可能想检查该值的来源。我建议后退几步,靠近模板代码。
我想创建一个供不同用户用于其 Facebook 页面的 Messenger Bot。我创建了一个 rails 应用程序并使用了 facebook-messenger gem.
我成功创建了机器人,当我为一个页面设置时它可以工作。现在,我按照说明让我的机器人在多个 Facebook 页面上运行(参见 "Make a configuration provider" section)。
我是 rails 的新手,我不确定将 class ExampleProvider 放在哪里?我把它放在我的 config/application.rb 文件中:
require_relative 'boot'
require 'rails/all'
# Require the gems listed in Gemfile, including any gems
# you've limited to :test, :development, or :production.
Bundler.require(*Rails.groups)
module BotletterApp
class Application < Rails::Application
# Settings in config/environments/* take precedence over those specified here.
# Application configuration should go into files in config/initializers
# -- all .rb files in that directory are automatically loaded.
config.paths.add File.join('app', 'bot'), glob: File.join('**', '*.rb')
config.autoload_paths += Dir[Rails.root.join('app', 'bot', '*')]
end
class BotProvider < Facebook::Messenger::Configuration::Providers::Base
def valid_verify_token?(verify_token)
bot.exists?(verify_token: verify_token)
end
def app_secret_for()
ENV['APP_SECRET']
end
def access_token_for(page_id)
bot.find_by(user_id: page_id).page_access_token
end
private
def bot
MyApp::Bot
end
end
Facebook::Messenger.configure do |config|
config.provider = BotProvider.new
end
end
然后我有 app/bot/setup.rb 文件来创建机器人。我不知道如何使用我创建的提供程序来代替 ENV 变量?
require "facebook/messenger"
include Facebook::Messenger
Facebook::Messenger::Subscriptions.subscribe(access_token: ENV["ACCESS_TOKEN"])
Facebook::Messenger::Profile.set({
get_started: {
payload: 'GET_STARTED_PAYLOAD'
}
}, access_token: ENV['ACCESS_TOKEN'])
我在 Rails 文档中搜索了如何让它工作,但不幸的是找不到任何东西。
更新:
现在我可以为不同的页面设置机器人了。不幸的是,我的 ConfigProvider 的以下行出现错误:
config/initializers/config_provider.rb
def bot
Rails.application.class.parent::Bot
end
I'm getting the following error:
NameError (uninitialized constant BotletterApp::Bot):
config/initializers/config_provider.rb:17:in bot' config/initializers/config_provider.rb:7:inapp_secret_for'
你知道我应该如何命名我的应用程序吗?
我的机器人模块:
module BotletterApp
class Application < Rails::Application
# Settings in config/environments/* take precedence over those specified here.
# Application configuration should go into files in config/initializers
# -- all .rb files in that directory are automatically loaded.
config.paths.add File.join('app', 'listen'), glob: File.join('**', '*.rb')
config.autoload_paths += Dir[Rails.root.join('app', 'listen', '*')]
end
end
更新,它适用于 ::Application,这是新文件:
class ConfigProvider < Facebook::Messenger::Configuration::Providers::Base
def valid_verify_token?(verify_token)
ENV['VERIFY_TOKEN']
end
def app_secret_for(page_id)
ENV['APP_SECRET']
end
def access_token_for(page_id)
CoreBot.find_by_page_id(page_id).page_access_token
end
private
def bot
BotletterApp::Application
end
end
Facebook::Messenger.configure do |config|
config.provider = ConfigProvider.new
end
问题是我收到以下错误,除非我的数据库查询似乎有效(它在 rails 控制台中有效):
ActiveRecord::StatementInvalid (SQLite3::SQLException: no such column: page_id.id: SELECT "core_bots".* FROM "core_bots" WHERE "page_id"."id" = ? LIMIT ?):
转向答案以提高可读性;)
关于 'plain'... 而不是
def bot
BotletterApp::Application
end
使用
def bot
Bot
end
或(看起来您将包含所有页面的模型命名为 CoreBot(?)(假设您在 /app/models/core_bot.rb
中有一个典型的 ActiveRecord 模型,我假设 Bot
)
def bot
CoreBot
end
那么您应该可以使用 README.md
中的模板代码至于你最近的问题:似乎 access_token_for
方法是用散列调用的,用 {id: 1}
之类的东西搜索。您可能想检查该值的来源。我建议后退几步,靠近模板代码。