icebob / vue-express-mongo-boilerplate

:star: MEVN Full stack JS web app boilerplate with NodeJS, Express, Mongo and VueJS

Home Page:http://vemapp.moleculer.services/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

After logging in through facebook the callback URI is broken

StaticSpark opened this issue · comments

Tried to paste some js into the header unsuccessfully

Now trying.. to add a callback URI.

https://scotch.io/tutorials/easy-node-authentication-facebook

module.exports = {

'facebookAuth' : {
    'clientID'      : 'your-secret-clientID-here', // your App ID
    'clientSecret'  : 'your-client-secret-here', // your App Secret
    **'callbackURL'   : 'http://localhost:8080/auth/facebook/callback'**
},

'twitterAuth' : {
    'consumerKey'       : 'your-consumer-key-here',
    'consumerSecret'    : 'your-client-secret-here',
    'callbackURL'       : 'http://localhost:8080/auth/twitter/callback'
},

'googleAuth' : {
    'clientID'      : 'your-secret-clientID-here',
    'clientSecret'  : 'your-client-secret-here',
    'callbackURL'   : 'http://localhost:8080/auth/google/callback'
}

};