I am trying to Execute Universal Link of Netflix show from My App in tvOS 17.2
When I Call the open(_:options:completionHandler:) to execute the Link it does open the Netflix App but open the landing page of Title. I have tried different alternative links but all has same behaviour.
The same Link works in iOS ans iPad OS. Here the links that I have tried and the code that handles the universal Link.
http://www.netflix.com/title/81731618
nflx://www.netflix.com/title/81731618
// Handle remote notification here
// For example, extract deep link and perform appropriate action
if let deepLink = userInfo["deep_link_key"] as? String {
// Handle the deep link here
print("Received Deep Link: \(deepLink)")
if let url = URL(string: deepLink) {
UIApplication.shared.open(url)
}
}
}