Currently im developing youtube like webapp using youtube data api v3 with VueJs.
I fetch the video query using video ids through $route.params.id , and my URL literally look like this, http://mywebapp/video/wRtasSllAk_aq.
So, the data of the video that own this id wRtasSllAk_aq will be shown up on the video page.
I wanted to show only videos in my channel. But then i realized that this way are not the best practices because, anyone who visit my webapp can easily replace the video ids in address bar and their video can be watch in my webapp too.
i don't want that situation happen because it can be misuse by someone who are not responsible.
If you guys have any possible solution that can help me out, please let me know because im still newbie in VueJs development.
And this project is my first try in learning it properly.
Thank you!