Skip to content

Commit 3bee42b

Browse files
Update auth.js
1 parent bf5ad59 commit 3bee42b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/auth.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ import Vue from 'vue'
33

44
// exchange the object with your own from the setup step above.
55
let webAuth = new auth0.WebAuth({
6-
domain: '000.eu.auth0.com',
7-
clientID: '3ltNIL5CKE9NY0v3etPtMVeMPtiP3Vl9',
6+
domain: 'YOUR_AUTH0_DOMAIN_HERE',
7+
clientID: 'YOUR_CLIENT_SECRET_HERE',
88
// make sure port is 8080
99
redirectUri: 'http://localhost:8080/callback',
1010
// we will use the api/v2/ to access the user information as payload
11-
audience: 'https://000.eu.auth0.com/api/v2/',
11+
audience: 'https://YOUR_AUTH0_DOMAIN_HERE/api/v2/',
1212
responseType: 'token id_token',
1313
scope: 'openid profile'
1414
})
@@ -91,4 +91,4 @@ export default {
9191
install: function(Vue) {
9292
Vue.prototype.$auth = auth
9393
}
94-
}
94+
}

0 commit comments

Comments
 (0)