実現したいこと
auth0+Node.jsでWebアプリの認証を作成しています.
クライアント側から,現在ログインしているユーザーの情報を取得を取得したいのですが,うまくいきません.
ソースコード
こちらのauth0の公式ドキュメントを参考に,以下のように実装しました.
**サーバーサイド↓ **
Node
1var express = require('express'); 2var app = express(); 3 4const { auth } = require('express-openid-connect'); 5const config = { 6 authRequired: false, 7 auth0Logout: true, 8 secret: '***', 9 baseURL: '***', 10 clientID: '***', 11 issuerBaseURL: '***' 12}; 13app.use(auth(config)); 14 15app.get('/', (req, res) => { 16 if(req.oidc.isAuthenticated()){ 17 res.sendFile(__dirname+'/index.html'); 18 }else{ 19 res.redirect('/login'); 20 } 21});
クライアント側↓
JavaScript
1<script src="https://cdn.auth0.com/js/auth0/9.11/auth0.min.js"></script> 2<script type="text/javascript"> 3 var webAuth = new auth0.WebAuth({ 4 domain: '***', 5 clientID: '***' 6 }); 7 webAuth.parseHash(window.location.hash, function(err, authResult) { 8 if (err) { 9 return console.log(err); 10 } 11 webAuth.client.userInfo(authResult.accessToken, function(err, user) { 12 // This method will make a request to the /userinfo endpoint 13 // and return the user object, which contains the user's information, 14 // similar to the response below. 15 }); 16 }); 17</script>
エラーコード
Uncaught TypeError: Cannot read property 'accessToken' of null
'accessToken'がnullだと返されてしまいます.
どのような原因が考えられるでしょうか?ご教授お願いいたします.
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。