카카오 메시지(javascript 이용)

//로그인 후 토큰을 가져오고 메시지 전송 버튼 클릭 함수(가이드 복사 붙여넣기 함) pc 브라우저에서 테스트(엣지)
function sendMessageTest(){

    	Kakao.API.request({
    		  url: '/v2/api/talk/memo/default/send',
    		  data: {
    		    template_object: {
    		      object_type: 'feed',
    		      content: {
    		        title: '카카오톡 링크 4.0',
    		        description: '디폴트 템플릿 FEED',
    		        image_url:
    		          'http://mud-kage.kakao.co.kr/dn/Q2iNx/btqgeRgV54P/VLdBs9cvyn8BJXB3o7N8UK/kakaolink40_original.png',
    		        link: {
    		          web_url: 'https://developers.kakao.com',
    		          mobile_web_url: 'https://developers.kakao.com',
    		        },
    		      },
    		      social: {
    		        like_count: 100,
    		        comment_count: 200,
    		      },
    		      button_title: '바로 확인',
    		    },
    		  },
    		  success: function(response) {
    		    console.log(response);
    		  },
    		  fail: function(error) {
    		    console.log(error);
    		  },
    		});	    		
    	
    }	

==> 에러 메시지 이해가 어렵습니다.
{“msg”:“insufficient scopes.”,“code”:-402,“api_type”:“TALK_MEMO_DEFAULT_SEND”,“required_scopes”:[“talk_message”],“allowed_scopes”:[“profile”]}"

도움 부탁 드립니다.ㅠㅠ

메시지 API를 사용하기 위해서는 ‘카카오톡 메시지 전송’ 동의 항목을 설정해야 합니다.
자세한 내용은 아래 링크의 Step 3를 참고해주세요.
https://developers.kakao.com/docs/latest/ko/message/js#before-you-begin