'no access token.' 이라는 에러가 뜹니다

문의 시, 디벨로퍼스 앱ID를 알려주세요.
=> ID 1109963

아래와 같이 코드를 작성 후 테스트 하면 에러 메시지가 나옵니다.


axios.post("https://kapi.kakao.com/v2/api/talk/memo/default/send",
    qs.stringify({
        template_object : `"object_type":"text","text":"메시지 전달","link":{},"button_title": "바로 확인"`
    }), {
        headers : {
            "Content-Type": "application/x-www-form-urlencoded",
            "Authorization": `Bearer ${Authorization}`
        }
}).then(function (response) {
    console.log(response.data);
}).catch(function (error) {
    console.log('헤더 정보 : ', error.config.Headers);
    console.log('에러 메세지 : ', error.response.data);
});

아래와 같이 출력됩니다.

헤더 정보 :  undefined
에러 메세지 :  { msg: 'no access token.', code: -401 }

설명대로 앱키를 통해서 인증키도 발급받았지만 계속 같은 메시지가 나와 두어번 더 발급도 받아보았지만 마찬가지 결과 입니다.

도움을 부탁드립니다.

“Authorization”: Bearer ${Authorization} 여기에 액세스토큰 세팅하신건가요?