我部署了一个测试应用(http://meteortipslinda2.meteor.com/)并添加了account-facebook。但是,Facebook登录不起作用,因为我可能输入了错误的API密钥。
我知道我可以使用meteor mongo meteortipslinda2.meteor.com
访问shell,但我对如何查看这些集合中的所有内容感到茫然:
meteor_accounts_loginServiceConfiguration meteor_oauth_pendingCredentials meteor_oauth_pendingRequestTokens
我假设我可以将值更新为mongoDB shell中的正确值,但首先我需要弄清楚如何查看集合的内容。
答案 0 :(得分:1)
要列出集合中的所有文档,只需调用不带任何参数的find。
db.myCollection.find()
如果有很多文件,它会批量处理。然后,您可以通过键入it
来显示下一批。