Android INTENTS

Does anyone know what is a correct intent to launch Live TV Channel in Plex?

I am able to launch any TV Show, TV Show season, TV Show episode or Movie.

Replace SERVER_ID and KEY. You can get both from, for example, URL:

https://app.plex.tv/desktop/#!/server/SERVER_ID/details?key=%2Flibrary%2Fmetadata%2FKEY&context=home%3Ahub.continueWatching~0~0

Movie / Episode:

am start --ez "android.intent.extra.START_PLAYBACK" true -a android.intent.action.VIEW 'plex://server://SERVER_ID/com.plexapp.plugins.library/library/metadata/KEY'

TV Show / Season:

am start --ez "android.intent.extra.START_PLAYBACK" true -a android.intent.action.VIEW 'plex://server://SERVER_ID/com.plexapp.plugins.library/library/metadata/KEY/children'

When I use metadata key from EPG, it loads all metadata but does not tune the channel, just keeps spinning. I think additional tuning is needed… I pursued that path too here [Feature Request] Play Live TV from Plex via cast or androidTV · Issue #39 · JurajNyiri/PlexMeetsHomeAssistant · GitHub and I was able to get stream URL but that one needs to be kept refreshed. I am looking for an intent that would do it for me.

Thank you!