Share & Video Deep linking
Customize base Share URL
https://fw.tv?fw_video={video_encoded_id}&fw_channel={channel_name}&fw_playlist={playlist_encoded_id}val viewOptions = ViewOptions.Builder().playerOption(
PlayerOption.Builder()
.shareBaseUrl("https://www.example.com")
.build()
).build()
// Or DSL verison:
val viewOptions = viewOptions {
playerOptions{
shareBaseUrl("https://www.example.com")
}
}
fwVideoFeedView.init(viewOptions)PlayerOption playerOptions = new PlayerOption.Builder()
.playerMode(PlayerMode.FIT_MODE)
.shareBaseUrl("https://www.example.com")
.build();
ViewOptions viewOptions = new ViewOptions.Builder()
.playerOption(playerOptions)
.build();
// init video feed view with view options
videoFeedView.init(viewOptions);Deep linking
Last updated
Was this helpful?