MIME type 오류

$.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.

원인이 뭘까요? 이 오류의 해결방법좀 알려주세요 ㅜㅜ

@anon33748189
카카오톡 프로필 요청 API는 https://kapi.kakao.com/v1/api/talk/profile 으로 요청해야 합니다.
크로스 도메인에 대해서 ajax 통신이 불가 합니다. 써드 서버에서 호출해서 사용하시면 됩니다.

감사합니다 ^^