카카오스토리 복수개의 내 스토리 정보요청

안녕하세요,

카카오스토리 올린 포스팅 정보를 일괄적으로 내려받는 기능을 만들고 싶은데요.
REST API 개발자 도구를 통해서 포스팅을 하거나 스토리 정보를 요청 시도 했을 때 아래와 같은 응답을 받았습니다.

{
“msg”: “insufficient scopes.”,
“code”: -402,
“api_type”: “STORY_MYSTORIES”,
“required_scopes”: [
“story_read”
],
“allowed_scopes”: [
“profile”
]
}

{
“msg”: “insufficient scopes.”,
“code”: -402,
“api_type”: “STORY_POST_NOTE”,
“required_scopes”: [
“story_publish”
],
“allowed_scopes”: [
“profile”
]
}

사용자관리에서 접근권한 항목으로 story_read 와 story_publish 를 모두 설정하였는데도

왜 안될까요? ㅜㅜ

답변 부탁 드립니다.