Problem with Twilio StatusCallback. Logs show a POST but something is amiss
Hi
I've been trying to see what is wrong for literally hours and still can't figure out why its not working.
I'm hoping if I post my complete code, perhaps someone will see something I've missed:
1) I am receiving a Statuscallback when checking my logs. Here is the latest I've tried (so I see my callback is working/this is direct from my logs):
When I go through the steps in my application, I see no errors in my logs and I see the statuscallback executed in the logs as shown at the top of the page.
If I simply try this url with the bare minimum of a variable attached: http://mydomain.com/app/assets/phone/contests/text_complete.php?account_id=17
The query will work and it will insert into my database the bare minimum. (I was doing this to double-check my query can insert OK). So it seems if even just the account_id is passed, I'll get an insert into my db.
When I plug in the test url above as my statuscallback url with just the required account_id... it doesn't work.
I can see the now shortened statuscallback in my logs show up... but for some reason it won't insert a record.
I simply can't figure out why it isn't inserting a record, even when I do the bare minimum url as my Statuscallback.
Is there some kind of permissions thing perhaps? Where you can visit the url and it will insert, but a callback won't insert?? Just trying to find some new direction to investigate.
Just in case, this is what my StatusCallback code looks like (maybe in case there is something wrong with the way its being formed?)
$subscribestatusmessage = "Hello from $company_name in $city! To subscribe, reply back with the word 'GO' and you are in."; /* Include the Twilio PHP library */ require "../api/Twilio.php"; /* Set our AccountSid and AuthToken */ $AccountSid = "mysid"; $AuthToken = "mytoken"; $client = new Services_Twilio($AccountSid, $AuthToken); $options = array("StatusCallback" => "http://mydomain.com/app/assets/phone/contests/text_complete.php?contestid=".urlencode($contestid)."&account_id=".urlencode($account_id)."&callername=".urlencode($callername)."&callercity=".urlencode($callercity)."&callerstate=".urlencode($callerstate)); $sms = $client->account->sms_messages->create( $textcalldisplay, $fromcaller, $subscribestatusmessage, $options );