Google Home API location fix

This commit is contained in:
JonatanRek
2020-04-29 19:28:33 +02:00
parent a1cfb21a81
commit 56891bda09

View File

@@ -1,19 +0,0 @@
<?php
class GoogleHome {
function response()
{
header('Content-Type: application/json');
$update_response = file_get_contents("php://input");
$update = json_decode($update_response, true);
echo '"RichResponse": {
"items": [
{
"simpleResponse": {
"textToSpeech": "test speech"
}
}
]
}';
}
}