Creating URLs of Videos in Mobile App

I am creating bubble mobile app and I am displaying all the content on a single page as recommended by the bubble.

I want to create unique URLs for Videos. I have already created Slugs. The reason of creating unique url of each content is ability to share the particular to our student (yes its an educational app). So when student opens that link it should take student directly to that video.

We are using deeplinks in mobile app.

If anyone know the solution please let me know. Thanks

@tabschoolindia Can you define the problem your are facing explicitly?

Ok,
I have a page called dashboard where I show everything.

  1. All Subjects of a Grade
  2. When any subject is clicked It’s videos come
  3. I am using Get data from Page URL ho show and hide all groups.
    for example

https://example.bubbleapps.io/index?page=mydashboard
Where I show all the subjects after user logs in.

https://example.bubbleapps.io/index?page=edvideos
where all the videos are shown

I want each video should have its own URL like
https://example.bubbleapps.io/index?page=edvideos?videos=the-solar-system
So when teacher shares video this url is sent and when student opens it will open video about solar system in their app at home.

Alright,

With your URL structure it looks like you are building a single page application. And showing the respective group by fetching the value from URL.

Thats all good.

For the video, you URL structure will be like:
https://example.bubbleapps.io/index?page=edvideos&video=the-solar-system

“the-solar-system” ==> Set the slug for all the videos to make a friendly URL. This can be done via a bulk action if you already have the video records in the database. OR You can add this into your admin panel where you add a new subject video.

For the group where you have a video player, set the datasource as edVideo like below:

Let me know if this works for you.

Can we use unique Id instead of setting up slugs value?