Merged
Conversation
* Update to model type str -> Union[str, list[str]]
…rvice.py, Fix errors in rcs_options.py
- 그룹 리포트와 단일 리포트 웹훅 컨트롤러 추가 - Django URL 패턴 수정: 새로운 웹훅 경로 추가 - pyproject.toml 및 uv.lock 파일 수정: 의존성 및 작업 공간 설정 업데이트 - 모델 및 응답 형식 개선: Pydantic 모델에 선택적 필드 추가
….md 파일을 추가하여 SOLAPI Django 웹훅 예제에 대한 설명을 포함했습니다.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
한국어 안내
message모델이 request, response로 나뉘어 실제 발송시엔RequestMessage클래스를 이용해야 합니다.SingleReport,GroupReport클래스를 추가했습니다. 관련한 예제는 Django 예제를 통해 확인하실 수 있습니다.NaverOption모델이 추가되었습니다.중요 안내사항
Message모델이 request, response로 나뉘었습니다. 업그레이드 사용자는 반드시 해당 부분을 확인해서 기존 발송 코드를 수정해주세요!번외
English Version
Messagemodel has been split into request and response, and at send-time you must use theRequestMessageclass.SingleReportandGroupReportclasses to support webhooks. See the Django example for usage.NaverOptionmodel.Important Notice
Messagemodel is divided into request and response. If you’re upgrading, be sure to review this change and update your existing send logic accordingly!Bonus