안녕하세요
카카오-키워드, 모먼트 API 통신을 위해 아래 코드를 이용하여 6시간마다 토큰갱신을 진행하고 있는데요
response = requests.post('https://kauth.kakao.com/oauth/token', data={
'grant_type': 'refresh_token',
'client_id': app_key,
'refresh_token': refresh_token
})
아래와 같은 오류가 발생하면서 갱신이되지 않고 있습니다. 확인 부탁 드립니다.
requests.exceptions.ConnectionError: HTTPSConnectionPool(host=‘apis.moment.kakao.com’, port=443): Max retries exceeded with url: /openapi/v4/adAccounts?code=ON%2COFF (Caused by NewConnectionError(’<urllib3.connection.HTTPSConnection object at 0x7f4dd1d51af0>: Failed to establish a new connection: [Errno -2] Name or service not known’))
감사합니다.