이미지 업로드 하기이미지가 bytes형태라는 가정(AI 생성 이미지 다운로드, 직접 그리기 하는 등의 경우) 하에 진행.이미지를 임시파일로 작성하고, 이 파일을 업로드한다.content_type: image/png 등import requestsimport tempfileimport logginglogger = logging.getLogger()def upload_image_file_to_wordpress( wp_api_url: str, token: str, image_data: bytes, content_type: str, filename: str) -> str: headers = { "Authorization": f"Bea..