Error(2)
-
[인앱 브라우저 로그인 오류] 403 오류: disallowed_useragent
언제 발생하는지? 카카오 인앱 브라우저를 통해 구글 로그인을 진행할 경우 더보기 상세 내용: 403 오류: disallowed_useragent You can't sign in from the screen because this app doesnt' comply with Google's secure browsers policy. If this app has a website, you can open a web browser and try signing in from there. You can let the app developer know that the app doesn't comply with Google's secure browsers policy. 스크린숏 오늘 카카오 알림 톡을 설정하고 사용자가..
2022.03.04 -
TypeError: kakao.maps.LatLng is not a constructor
카카오 지도 API를 처음 사용해본다면 이런 에러를 볼 수도 있을 것이다. 우리가 카카오 api를 쓸 수 있는 과정을 쉽게 설명해보면, 일단 스크립트를 추가하게 되면 kakao라는 객체가 window(전역 객체)에 등록이 되기 때문에 그 안(maps)에 지도를 그려주는 메서드들을 호출해서 사용할 수 있는 것이다. kakao.maps.LatLng is not a constructor라는 에러가 발생하는 이유는 LatLng이라는 메서드는 아직 로딩이 끝나지 않아서 존재하지 않는데 생성자 함수 (constructor)로 사용하려고 하기 때문에 발생하는 오류다. kakao 맵 공식문서에서는 아래와 같은 방법으로 지도를 그리도록 안내하고 있다 const container = document.getElementBy..
2022.02.17