我在我的meteor应用程序中使用account-google软件包进行oAuth。我想抓住clientId和secret(显然存储在meteor_accounts_loginServiceConfiguration mongo集合中),但我不确定如何这样做。任何帮助都会很棒!感谢。
答案 0 :(得分:1)
您可以使用此代码段:
const googleServiceConfig = Accounts.loginServiceConfiguration.findOne({
service: 'google',
});
console.log(googleServiceConfig.clientId, googleServiceConfig.secret);