Why does sending a command to "remote device works", but not to "this device" #3197
-
|
Hi so I'm trying to execute a custom command like this to a skill enabled in Alexa and this works fine, and provides a voice response to the command even though I don't need it. (also tried typing the same command into the alexa app on phone and it works, responds in text and performs action) but when I try to issue the same command via "this device" it doesn't work and no errors are produced i.e. action: media_player.play_media Any ideas of how to get this working? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 4 replies
-
|
I was attempting to answer your question but asked AI before posting and its answer is far clearer than what I came up with:
|
Beta Was this translation helpful? Give feedback.
-
|
I wonder if this is possible though to implement, the only reason I ask is. If I one the Alexa App on my phone, again which is not a real device, and target that as "this.device" the action works. |
Beta Was this translation helpful? Give feedback.
-
|
Hi Daniel, sorry your right the response is not needed at all.... its the fact the request does not work for some reason when issued to this implementation of "this.device", whereas the alexa phone app another implementation of "this.device"(when open on the phone) does perform the action. |
Beta Was this translation helpful? Give feedback.
entity_id: media_player.a-real-echo-deviceis, well, a physical echo device, which is whatmedia_content_type: custommedia_content_id: 'Ask BMW to flash lights' requires as you have to target a real echo as if you were asking that echo the question.I'm pretty sureentity_id: media_player.this_deviceis the AMP emulation of the Alexa app. In the Alexa App, there is provision in its UI to "Ask Alexa" something the same way you can ask an echo device via "Alexa," (the wake-up) "Ask BMW to flash lights" but the AMP integration (entity_id: media_player.this_device) doesn't support that. It simply exists in AMP because Amazon created it and AMP discovered it as emulated Echo device.I was att…