Hi.
I have a question about ChannelController interface.
In the Alexa.ChannelController developer guide, example request has this payload.
"payload": { "channel": { "number": "1234", "callSign": "KSTATION1", "affiliateCallSign": "KSTATION2", "uri": "someUrl" }, "channelMetadata": { "name": "Alternate Channel Name", "image": "urlToImage" } }
But, I do not know how could Alexa deliver these number, callSign, affiliateCallSign, uri, name, image data?
I think there should be a table which contains those mapping informations.
And I believe this kind of table should informed to Alexa while discover my TV.
But the sample git only provides short examples like,
{ "type": "AlexaInterface", "interface": "Alexa.ChannelController", "version": "3", "properties": { "supported": [ { "name": "channel" } ], "proactivelyReported": true, "retrievable": true } },
How should I deliver the number, callSign, affiliateCallSign, uri, name, image table to Alexa while discovery?
If you know how, please share me the example Discovery response.
Thank you.