We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f5af5e commit 67973a3Copy full SHA for 67973a3
appengine/standard/twilio/app.php
@@ -40,7 +40,7 @@
40
# [END send_sms]
41
});
42
43
-$app->get('/twiml', function () {
+$app->post('/twiml', function () {
44
# [START twiml]
45
$response = new Services_Twilio_Twiml();
46
$response->say('Hello Monkey');
appengine/standard/twilio/test/twilioTest.php
@@ -64,7 +64,7 @@ public function testTwiml()
64
{
65
$client = $this->createClient();
66
67
- $crawler = $client->request('GET', '/twiml');
+ $crawler = $client->request('POST', '/twiml');
68
69
$response = $client->getResponse();
70
$this->assertEquals(200, $response->getStatusCode());
0 commit comments