프로그램/자료&정보
크롬 개발자 도구에서 API 요청하기 ( Fetch API 사용 )
Request API in Chrome Developer Tools ( Using the Fetch API ) [Get] 방법 1) fetch('https://api.test.com/getMyId', { method: 'GET', headers: {'Content-type': 'application/json; charset=UTF-8' } }) .then(res => res.json()) .then(console.log) 방법 2) const response = await fetch('https://api.test.com/getMyId', { method: "GET", headers: {'Content-type': 'application/json; charset=UTF-8' } }) console.log..
2023. 4. 24. 10:12