我正在使用Quickblox红宝石宝石。现在我想链接到不同的Quickblox帐户(开发,测试版,制作等)。在document
中他们使用config.yml,那么我应该在那里配置不同的环境吗?
我的config.yml:
defaults: &defaults
quickblox:
application_id: 12345
auth_key: xxxxx
auth_secret: xxxxx
server: api.quickblox.com
user_owner_id: 1
development:
<<: *defaults
test:
<<: *defaults
我的尝试无效。