Meteor.js Google Oauth issues

后端 未结 4 2031
北恋
北恋 2021-02-05 13:48

I am trying to setup my Meteor app to use Google logins, Here is my setup in the /server/config.js file

Accounts.loginServiceConfiguration.remove({
service: \"go         


        
相关标签:
4条回答
  • 2021-02-05 14:22

    I'm using Nitrous.io since I am developing on Windows. This article explains why google sees the wrong URI.

    https://github.com/shoebappa/vagrant-meteor-windows/issues/9

    Basically you need to launch meteor with a modified ROOT_URL so that it doesn't start with localhost.

    Replace localhost.meteor.com with the URL that meteor is actually running at. ROOT_URL=http://localhost.meteor.com meteor

    0 讨论(0)
  • 2021-02-05 14:22

    I have the same problem on https://gotlog.in When I put https://gotlog.in/_oauth/google?close as the call back URL it get worth :

    1. That’s an error. Error: invalid_client no application name

    And whe I put the good call back (https://gotlog.in/_oauth/google) as said in the setup popup I get the same :

    1. That’s an error. Error: redirect_uri_mismatch The redirect URI in the request: https://gotlog.in/_oauth/google?close did not match a registered redirect URI.

    My root URL is setup and valid, but I have no userData published. But the documantation says : "By default, the current user's username, emails and profile are published to the client."

    Edit: found the solution here : https://github.com/meteor/meteor/issues/2717

    I was missing the consent screen information in the api console. And yes the callback URL has to have the '?close' at the end. Viva Meteor =)

    0 讨论(0)
  • 2021-02-05 14:26

    Another idea : Did you removed the autopublish ? If so, you must publish the userData so your client can access to Users.

    0 讨论(0)
  • 2021-02-05 14:46

    You have to register the redirect URL with Google's APIs Console. Log on to the console and check what redirect URI was set up. Add localhost if necessary

    Update:

    I tried it myself and added

     http://localhost:3000/_oauth/google?close 
    

    in the API console. I added accounts-google and accounts-ui to the Hello World app and added the login button to the page

    <body>
        {{loginButtons}}
        {{> hello}}
    </body>
    

    I agreed to the requested permissions in the pop up and was logged in.

    0 讨论(0)
提交回复
热议问题