如何更改Meteor应用程序以使用OAuth重定向流程?

时间:2015-01-12 03:37:28

标签: android meteor ios8 oauth-2.0 meteor-accounts

我刚刚将accounts-google添加到我的Meteor应用中,并回答说我想要默认的OAuth流popup。我不知道为什么这是'默认',它在iOS8,WebViews和许多其他地方都被打破(参见讨论->here)。

无论如何,我有houston,并且没有看到任何相关的集合,我不确定配置存储的位置,或者如何更改它。非常感谢..

1 个答案:

答案 0 :(得分:1)

啊哈,首先要meteor add service-configuration获取相关的智能包,然后您可以随意添加此代码

ServiceConfiguration.configurations.update(
  {service: 'google'},
  {$set: {loginStyle: 'redirect'}}
)