I am learning meteor and have created a new app and installed accounts-core, accounts-google and accounts-ui. This worked as expected and prompted me to configure the google integration. After I configured it, though, I realized I used an incorrect url and changed it in the Google API. How do I make this change take effect in the meteor side? In other words, how do I get back to the meteor google configuration page where I enter the client id and secret?
相关问题
- A good way to define default rendering templates i
- How to integrate meteor's velocity tests with
- Installing Cordova plugin to meteor project using
- Using tinytest to test Meteor client while the ser
- Django DDP assistance
相关文章
- External dependencies (like bootstrap) in Meteor
- how to properly configure meteor to work with node
- Can meteor mongo driver handle $each and $position
- Meteor blocking clarification
- Setting the “Content-Type” header in HTTP.call on
- Log in to a meteor app from a Google chrome extens
- Meteor collection.insert callback to return new id
- how can I set a callback for the user session time
If you need to do this on your production server, where you don't have
meteor
but you can runmongo
from the shell, then the process is pretty similar:How about this.
Clearing only account configuration.I have tried in my project.
meteor mongo
Clearing all data in your project.
First, add the service configuration package:
Then, in your app in the system folder (create it if you don't have one) add a file called service.js and in there add:
Further Reading:
Meteor Docs - Login With External Service
A
meteor reset
will bring everything back to 0, use it wisely.This is just a light revision in snize's answer, but this worked for me: