I am developing a feature to deeplink apps like Netflix,prime video ,Showtime,Youtube etc. from webOS TV . I am making use of com.webos.service.intent API to manage intents . I tried to add intent for youtube .Added
"intentFilters": [
{
"actions": ["view"],
"uris": ["https://youtube.com", "http://", "https://"]
}
],
to appinfo.json and here is the API call that i am making
webOS.service.request('luna://com.webos.service.intent', {
method: 'start',
parameters: {
intent: {
action: ["view"],
uri:["https://www.youtube.com/"]
}
},
onComplete: (data) => resolve(data),
});
However it is failing with this error
My webOS TV version : 7.3.0-12 (mulle-mebbin)
Is there something that i am missing?Thanks in advance!