I hereby claim:
- I am caseysoftware on github.
- I am caseysoftware (https://keybase.io/caseysoftware) on keybase.
- I have a public key whose fingerprint is 4F92 F62D 4B7B 1D12 83ED 332F 9A97 08A6 9D90 E5FD
To claim this, I am signing this object:
| <?php | |
| //This is a partial snippet | |
| $contextIO = new ContextIO($consumerKey, $consumerSecret); | |
| //use the message id to get the message body | |
| $message = $contextIO->getMessageBody($account_id, | |
| array('message_id' => $message_id, 'type' => 'text/plain')); | |
| if (is_object($message)) { | |
| $content = $message->getData(); |
| <?php | |
| include 'credentials.php'; | |
| require 'vendor/Services/Twilio.php'; | |
| $json = file_get_contents('php://input'); | |
| $data = json_decode($json); | |
| $message_id = $data->message_data->message_id; |
| <?php | |
| include 'credentials.php'; | |
| require 'vendor/Services/Twilio.php'; | |
| require 'vendor/PHP-ContextIO/class.contextio.php'; | |
| $message_id = $_GET['message_id']; | |
| $contextIO = new ContextIO($consumerKey, $consumerSecret); |
| <?php | |
| include 'credentials.php'; | |
| require 'vendor/Services/Twilio.php'; | |
| $digits = (int) $_POST['Digits']; | |
| $message_id = $_GET['message_id']; | |
| $contextIO = new ContextIO($consumerKey, $consumerSecret); |
| <?php | |
| // This includes our public and private keys | |
| include_once 'creds.php'; | |
| // This includes the base of our library, everything else is | |
| // autoloaded according to the PSRs. | |
| include_once 'vendor/autoload.php'; | |
| // First initiatialize the Marvel client object, it does all the heavy lifting. | |
| $client = new \Marvel\Client($public_key, $private_key); |
I hereby claim:
To claim this, I am signing this object:
| { | |
| "require": { | |
| "op3nvoice/op3nvoice-helper": "dev-master" | |
| } | |
| } |
| <?php | |
| require 'creds.php'; | |
| require 'vendor/autoload.php'; | |
| /** | |
| * The code to parse the namespaces was derived from http://blog.sherifmansour.com/?p=302 | |
| */ | |
| $rssFeed = 'http://austintx.swagit.com/videos.xml'; | |
| $rssString = file_get_contents($rssFeed); |
| <?php | |
| require 'creds.php'; | |
| require 'vendor/autoload.php'; | |
| $video = new OP3Nvoice\Bundle($apikey); | |
| $items = $video->index(); | |
| foreach($items as $item) { |