Here's the PHP code that Brian Hendrickson used to integrate Zeep
Mobile with
http://openmicroblogger.
Give it a go and see if you guys can get it working for yourselves.
Thanks Brian!
# Created by Brian Hendrickson (
br...@openmicroblogger.com) on
2008-09-22
# Copyright (c) 2008. All rights reserved.
# Released under MIT License
define( API_URL, '
https://api.zeepmobile.com/messaging/2008-07-14/
send_message' );
define( API_KEY, 'YOUR_API_KEY' );
define( SECRET_ACCESS_KEY, 'YOUR_SECRET_KEY' );
# (ex. Sat, 12 Jul 2008 09:04:28 GMT)
$http_date = gmdate( DATE_RFC822 );
$parameters = "usr_id=1234&body=".urlencode('Art thou not Romeo, and a
Montague?');
# => "user_id=1234&body=Art+thou+not+Romeo%2C+and+a+Montague%3F"
$canonical_string = API_KEY . $http_date . $parameters;
# => "YOUR_API_KEYSat, 12 Jul 2008 09:04:55
GMTuser_id=1234&body=Art+thou+not+Romeo%2C+and+a+Montague%3F"
$b64_mac = base64_encode(hash_hmac("sha1", $canonical_string,
SECRET_ACCESS_KEY, TRUE));
$authentication = "Zeep " . API_KEY . ":$b64_mac";
$header = array(
"Authorization: ".$authentication,
"Date: ".$http_date,
"Content-Type: application/x-www-form-urlencoded",
"Content-Length: " . strval(strlen($parameters))
);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, API_URL );
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, $header);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $parameters );
$response = curl_exec($ch);
curl_close($ch);