작성
·
2.8K
0
E:\프로그래밍\Nodejs_Master_Project\9.Express로SNS서비스만들기\node_modules\passport-oauth2\lib\strategy.js:83
if (!options.clientID) { throw new TypeError('OAuth2Strategy requires a clientID option'); }
^
TypeError: OAuth2Strategy requires a clientID option
at Strategy.OAuth2Strategy (E:\프로그래밍\Nodejs_Master_Project\9.Express로SNS서비스만들기\node_modules\passport-oauth2\lib\strategy.js:83:34)
at new Strategy (E:\프로그래밍\Nodejs_Master_Project\9.Express로SNS서비스만들기\node_modules\passport-kakao\dist\Strategy.js:33:31)
at module.exports (E:\프로그래밍\Nodejs_Master_Project\9.Express로SNS서비스만들기\passport\kakaoStrategy.js:7:18)
at module.exports (E:\프로그래밍\Nodejs_Master_Project\9.Express로SNS서비스만들기\passport\index.js:27:5)
at Object.<anonymous> (E:\프로그래밍\Nodejs_Master_Project\9.Express로SNS서비스만들기\app.js:38:1)
at Module._compile (internal/modules/cjs/loader.js:1063:30)
at Object.Module._extensions..js (internal/modules/cjs/loader.js:1092:10)
at Module.load (internal/modules/cjs/loader.js:928:32)
at Function.Module._load (internal/modules/cjs/loader.js:769:14)
at Function.executeUserEntryPoint [as runMain] (internal/modules/run_main.js:72:12)
[nodemon] app crashed - waiting for file changes before starting...
npm start로 실행하면 다음과 같이 passport-oauth2에서 오류가 난다고 하는데,
강의에서는 이번에는 accessToken, refreshToken 와 같은 oauth2에 관련된 것은 사용하지 않는다고 들었습니다.
해당 오류는 어떻게 해결해야 하나요?
답변 4
0
0
동일한 내용으로 검색해서 들어왔습니다.
작년에 올리셨지만 이후 들어오실 분께 도움될까해서 남깁니다.
저는 dotenv.config()이렇게 했을때 .env 파일을 읽지 못하는지 다른 환경변수도 읽지 못해서 아래와 같이 수정해서 사용했습니다.
dotenv.config({path: path.join(__dirname, '/.env')});
0
0
passport.use에서 생성한 KakaoStrategy객체에서 clientID와 callbackURL 만들었습니다.
KakaoStrategy 부분은 다음과 같이 작성하고 돌렸는데, 아직도 동일한 오류가 발생합니다.
다음과 같이 나옵니다.
$ process.env.KAKAO_ID
bash: process.env.KAKAO_ID: command not found
이 경우에는 어떻게 해결해야 할까요?