-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[FR] 연령 제한이 있는 방송에 대한 예외처리 혹은 기능 추가 #39
Labels
bug
Something isn't working
Comments
zer0ken
changed the title
[FR] 연령 제한이 있는 방송의 경우에 대한 처리
[FR] 연령 제한이 있는 방송에 대한 예외처리 혹은 기능 추가
Jan 11, 2025
연령 제한이 있는 방송에서 무슨 기능이 정상적으로 작동하지 않았는지 자세한 설명이 필요합니다. 어떠한 기능을 이용하였을 때, 무슨 예외(Exception)가 발생하였는지 자세한 서술 부탁드립니다. |
연령 제한이 켜진 방송에서의 테스트1. 치지직 Studio > 방송하기 > 연령 제한 설정 켜짐2. 코드 실행테스트에는 이 저장소의 Quick examples에 있는 코드를 그대로 사용했습니다. 테스트 환경에서 해당 코드가 저장된 파일의 이름은 from chzzkpy.chat import ChatClient, ChatMessage, DonationMessage
client = ChatClient("<channel-id>")
@client.event
async def on_chat(message: ChatMessage):
if message.content == "!안녕":
await client.send_chat("%s님, 안녕하세요!" % message.profile.nickname)
@client.event
async def on_donation(message: DonationMessage):
await client.send_chat("%s님, %d원 후원 감사합니다." % (message.profile.nickname, message.extras.pay_amount))
# 챗봇 기능을 이용하기 위해서는 네이버 사용자 인증이 필요합니다.
# 웹브라우저의 쿠키 값에 있는 NID_AUT와 NID_SES 값으로 로그인을 대체할 수 있습니다.
client.run('<NID_AUT>', '<NID_SES>') 3. 출력
연령 제한이 꺼진 방송에서의 테스트동일한 방송에서 연령 제한을 끈 뒤에 같은 코드를 실행하면, CLI에서는 별다른 출력이 없으며, 기능이 정상적으로 동작하는 것처럼 보입니다. |
확인감사합니다. 빠른 시일 내에 조치해드리도록 하겠습니다. |
gunyu1019
added
bug
Something isn't working
and removed
enhancement
New feature or request
labels
Jan 11, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
연령 제한이 있는 방송에서 몇몇 기능이 정상적으로 동작되지 않았으며 이에 관한 예외처리도 별도로 존재하지 않는 것 처럼 보입니다. 적절한 예외를 추가하거나 기능을 수정해주셨으면 좋겠습니다. 감사합니다.
The text was updated successfully, but these errors were encountered: