Meteor.js accounts-google获取clientId和secret

时间:2015-09-28 19:03:43

标签: meteor meteor-accounts

我在我的meteor应用程序中使用account-google软件包进行oAuth。我想抓住clientId和secret(显然存储在meteor_accounts_loginServiceConfiguration mongo集合中),但我不确定如何这样做。任何帮助都会很棒!感谢。

1 个答案:

答案 0 :(得分:1)

您可以使用此代码段:

const googleServiceConfig = Accounts.loginServiceConfiguration.findOne({
  service: 'google',
});
console.log(googleServiceConfig.clientId, googleServiceConfig.secret);