organization / KotlinInside

비공식 디시인사이드 API (Kotlin (Java)) / Unofficial DCInside API written in Kotlin
https://organization.github.io/KotlinInside/
GNU General Public License v3.0
66 stars 5 forks source link

글쓰기 할때 MarkdownContent , HtmlContent , ImageContent 을 같이 쓰면 HtmlContent 이 안먹힘 #331

Closed clcocd closed 1 month ago

clcocd commented 1 month ago
ArticleWrite(
                                                gallId = gallId ,
                                                article = Article(
                                                    subject = title,
                                                    content = mutableListOf(
                                                        ImageContent(
                                                            file = File(selectedImagePath)
                                                        ),
                                                        HtmlContent(
                                                            htmlString = embedCode
                                                        ),
                                                        MarkdownContent(
                                                            markdownString = content
                                                        ),
                                                    ),
                                                    headText = HeadText(
                                                        identifier = 0,
                                                        name = "일반",
                                                    )
                                                ),
                                                session = KotlinInside.getInstance().session
                                            )

이런식으로 같이 쓰면 글쓰기는 성공 하는데 확인을 하면 HtmlContent 부분만 글에 없음

테스트도 해봤는데 ImageContent 부분만 없이 하면 HtmlContent , MarkdownContent 부분은 정상 작동을 함

JellyBrick commented 1 month ago

어떤 HTML 태그를 사용하셨나요? 서버측에서 지원되지 않는 HTML 태그를 사용하는 경우 해당 content가 표시되지 않을 수 있습니다.

clcocd commented 1 month ago

유투브 embed 코드 입니다 지원을 안한다기엔 ImageContent 가 없을떈 정상작동합니다

clcocd commented 1 month ago

자체적으로 해결 했씁니다 정상 작동합니다