-
Notifications
You must be signed in to change notification settings - Fork 304
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Play Playlist #102
Comments
What happens in the Alexa App if you create a test routine with this information and try to play it? Please also provide the specific JSON you are using so we can test it and specify what you mean that it "stopped working." Does Alexa say anything? Does nothing happen? |
Original code: {
"entity_id": "media_player.josh_s_tap", "media_content_id": "Josh's Playlist", "media_content_type": "AMAZON_MUSIC"
} “I can’t find songs by Josh’s Playlist” {
"entity_id": "media_player.josh_s_tap", "media_content_id": "Joshs Playlist", "media_content_type": "AMAZON_MUSIC"
} “I can’t find songs by Joshs Playlist” {
"entity_id": "media_player.josh_s_tap", "media_content_id": "JoshsPlaylist", "media_content_type": "AMAZON_MUSIC"
} “I can’t find songs by JoshsPlaylist” Also tried… {
"entity_id": "media_player.josh_s_tap", "media_content_id": "Alexa.Music.PlayJoshs", "media_content_type": "sequence"
} No Response from the echo. {
"entity_id": "media_player.josh_s_tap", "media_content_id": "Alexa.Music.PlayJoshsPlayist", "media_content_type": "sequence"
} No Response from the echo. This used to play the podcast Chompers from Tune In now it says "You have chompers enabled would you like to open it?" {
"entity_id": "media_player.josh_s_tap", "media_content_id": "Chompers", "media_content_type": "TUNEIN"
} As for the test I have created it... and verified that it is there... {
"@type": "com.amazon.alexa.behaviors.model.Automation",
"automationId": "amzn1.alexa.automation.c6059e15-5b78-4b8f-81d2-************",
"condition": null,
"creationTimeEpochMillis": 1551351665006,
"lastUpdatedTimeEpochMillis": 1551351665006,
"name": null,
"sequence": {
"@type": "com.amazon.alexa.behaviors.model.Sequence",
"sequenceId": "amzn1.alexa.sequence.4b2b506a-9475-4f72-ba74-************",
"startNode": {
"@type": "com.amazon.alexa.behaviors.model.OpaquePayloadOperationNode",
"name": null,
"operationPayload": {
"customerId": "**************",
"deviceSerialNumber": "ALEXA_CURRENT_DSN",
"deviceType": "ALEXA_CURRENT_DEVICE_TYPE",
"locale": "en-US",
"musicProviderId": "TUNEIN",
"sanitizedSearchPhrase": "chompers",
"searchPhrase": "Chompers"
},
"type": "Alexa.Music.PlaySearchPhrase"
}
},
"status": "ENABLED",
"triggers": [
{
"id": "amzn1.alexa.trigger.1ca5ca3e-62b7-4cc0-b7cb-************",
"payload": {
"customerId": "**************",
"locale": "en-US",
"marketplaceId": "*************",
"utterance": "test"
},
"timeLapse": null,
"type": "CustomUtterance"
}
]
}, When I run this... Nothing happens... {
"entity_id": "media_player.josh_s_tap", "media_content_id": "test", "media_content_type": "routine"
} |
Can you please use the ``` to try to quote the text so it doesn't destroy the whitespace. I'll edit your first one to show you how. |
{
"entity_id": "media_player.josh_s_tap", "media_content_id": "Alexa.Music.Play", "media_content_type": "sequence"
} This will play music but If I try to enter anything after Play there is no response. |
Thanks for the details. Answers inline.
Can you get it to work with an Alexa routine? Everything below until my next coment will definitely not work since sequences do not allow you to change anything.
If it used to work but doesn't work now, that may be an Amazon issue. Are you saying since updating versions or without changing version?
|
Oh, try this if the playlist is called "Josh’s Playlist" {
"entity_id": "media_player.josh_s_tap",
"media_content_id": "My playlist Josh’s Playlist",
"media_content_type": "AMAZON_MUSIC"
} |
{
"entity_id": "media_player.josh_s_tap",
"media_content_id": "My playlist Joshs",
"media_content_type": "AMAZON_MUSIC"
} For the win! Thank You we are backup and rinning. |
Great. I'll close this. |
In the old version (pre 1.0.0), I was using something along the line of:
- id: Blank Playlist
name: Blank Playlist
type: AMAZON_MUSIC
This stoped working (I think it was working yesterday on 1.0.0 but I could be wrong). I also use type: TUNEIN and it appears to still be working.
The text was updated successfully, but these errors were encountered: