I am making my own web app to store which TV shows and movies i have watched. I would like to store additional data about each show or movie. Am I allowed to use the comments in a list to store JSON data?
찾으시는 영화나 TV 프로그램이 없나요? 로그인 하셔서 직접 만들어주세요.
이 항목을 평가하거나 목록에 추가할까요?
회원이 아닌가요?
Travis Bell님의 댓글
1월 21, 2024 at 3:28 오후
There’s some assumption that the text in comments should be parsable as Markdown but there’s probably nothing stopping you from storing some JSON.
Have you tried it, does it work?
UnityGaming님의 댓글
1월 21, 2024 at 3:31 오후
I have a small proof of concept, yes. I request the list through the v4 endpoint and just parse all the comments as JSON.
Travis Bell님의 댓글
1월 21, 2024 at 3:33 오후
If it works, go for it. It’s your list.
UnityGaming님의 댓글
1월 21, 2024 at 3:36 오후
All right, thank you. Would this also be ok if, at a later date, I allowed users to authenticate with their TMDB accounts and would store things in their lists?
Travis Bell님의 댓글
1월 21, 2024 at 3:48 오후
In theory, sure. You’ll have to balance that in practice though.
The new list layout is being launched soon which has the ability to show and hide comments so in theory at least these users could hide all the gibberish JSON from polluting their displays.
UnityGaming님의 댓글
1월 21, 2024 at 3:50 오후
Ok, thank you for the quick replies and permission!