We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
종가 갱신 스케줄링 메소드가 실행되었으나 토큰이 만료되어 갱신할 수 없습니다.
kis 액세스 토큰이 만료되었는지 체크하는 aop(AccessTokenAspect)에서 종가 갱신 스케줄링 메소드를 추가하지 않았기 때문입니다. 액세스 토큰이 만료되었음에도 만료 체크를 하지 않고 실행되기 때문에 실패한 것입니다.
종가 갱신 스케줄링 메소드 또한 aop에 추가하여 실행 전에 액세스 토큰이 만료되었다면 재발급하도록 합니다.
FineAnts-was/src/main/java/codesquad/fineants/spring/api/kis/aop/AccessTokenAspect.java
Lines 33 to 44 in 1722074
The text was updated successfully, but these errors were encountered:
yonghwankim-dev
Successfully merging a pull request may close this issue.
상황
종가 갱신 스케줄링 메소드가 실행되었으나 토큰이 만료되어 갱신할 수 없습니다.
원인
kis 액세스 토큰이 만료되었는지 체크하는 aop(AccessTokenAspect)에서 종가 갱신 스케줄링 메소드를 추가하지 않았기 때문입니다. 액세스 토큰이 만료되었음에도 만료 체크를 하지 않고 실행되기 때문에 실패한 것입니다.
해결방법
종가 갱신 스케줄링 메소드 또한 aop에 추가하여 실행 전에 액세스 토큰이 만료되었다면 재발급하도록 합니다.
FineAnts-was/src/main/java/codesquad/fineants/spring/api/kis/aop/AccessTokenAspect.java
Lines 33 to 44 in 1722074
The text was updated successfully, but these errors were encountered: