$.ajax({
url : ‘https://kauth.kakao.com/v1/api/talk/profile’
, header : {‘Authorization’ : 'bearer '+accessToken}
, type : ‘GET’
, crossOrigin : true
, success : function(resData) {
console.log(resData);
}
});
사용자 프로필을 얻기 위해 위와같이 요청하면 아래의 오류가 납니다.
Refused to execute script from ‘https://script.google.com/macros/s/AKfycb …’ because its MIME type (‘text/html’) is not executable, and strict MIME type checking is enabled.
원인이 뭘까요? 이 오류의 해결방법좀 알려주세요 ㅜㅜ