The discovery of my Skill seems to work.
When I try to show the camera stream on my Echo device, it returns that the cam is not responding.
That's my initialize response:
{ "context": { "properties": [ { "namespace": "Alexa.EndpointHealth", "name": "connectivity", "value": { value: "OK" } "timeOfSample": "2018-04-12T09:20:15.074Z", "uncertaintyInMilliseconds": 200 } ] }, "event": { "header": { "namespace": "Alexa.CameraStreamController", "name": "Alexa.Response", "payloadVersion": "3", "messageId": "82ec2945-1c8e-4c39-bdae-7dd921d872f5", "correlationToken": "AAAAAAAAAQD..." }, "endpoint": { "scope": { "type": "BearerToken", "token": "eyJ0eXAiOiJK..." }, "endpointId": "my SmartCam", "cookie": {} }, "payload": { "cameraStreams": [ { "protocol": "RTSP", "resolution": { "width": 1280, "height": 720 }, "authorizationType": "BASIC", "videoCodec": "H264", "audioCodec": "NONE", "uri": "rtsp://user:pass@cam.server.org:443/", "idleTimeoutSeconds": 30 } ], "imageUri": "https://user:pass@image.server.org/stream.jpg" } } }
There is no request reaching the Camera, or the server delivering the image.
Are there errors in the response? Anything else I need to take care of?