我刚刚将accounts-google
添加到我的Meteor应用中,并回答说我想要默认的OAuth流popup
。我不知道为什么这是'默认',它在iOS8,WebViews和许多其他地方都被打破(参见讨论->here)。
无论如何,我有houston
,并且没有看到任何相关的集合,我不确定配置存储的位置,或者如何更改它。非常感谢..
答案 0 :(得分:1)
啊哈,首先要meteor add service-configuration
获取相关的智能包,然后您可以随意添加此代码
ServiceConfiguration.configurations.update(
{service: 'google'},
{$set: {loginStyle: 'redirect'}}
)