-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
27 lines (22 loc) · 1.11 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?php
$json2echo=array(
"speech"=> "",
"messages"=> [array(
"title"=> 'Oblivion',
"subtitle"=> 'Oblivion is a SciFi film.',
"buttons"=> [ array(
"text"=> "view film",
"postback"=>"https://www.moovrika.com/m/3520"
),
array(
"text"=> "Ask something else",
"postback"=>"I want to ask something else"
)
]
,
"type"=> 1
)]
);
header('Content-Type: application/json');
echo json_encode($json2echo, JSON_UNESCAPED_SLASHES);
?>