File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -3,12 +3,12 @@ import Vue from 'vue'
33
44// exchange the object with your own from the setup step above.
55let 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+ }
You can’t perform that action at this time.
0 commit comments