GSMA OneAPI competition: entry extended to April 26th
To get up and running with OneAPI then visit the Reference Implementation and forums at http://oneapi.aepona.com
In this section of Betavine you will find the Betavine API and information on the GSMA One API.
<?
ob_start();
function logf($message) {
$fd = fopen('proxy.log', "a");
fwrite($fd, $message . "\n");
fclose($fd);
}
?>
<?
$url = $_REQUEST['url'];
logf($url);
$curl_handle = curl_init($url);
curl_setopt($curl_handle, CURLOPT_HEADER, 0);
curl_setopt($curl_handle, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($curl_handle, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl_handle, CURLOPT_USERAGENT, "Owen's AJAX Proxy");
$content = curl_exec($curl_handle);
$content_type = curl_getinfo($curl_handle, CURLINFO_CONTENT_TYPE);
curl_close($curl_handle);
header("Content-Type: $content_type");
echo $content;
ob_flush();
?>
CURLOPT_USERAGENT. If I set a user agent then the betavine servers will return a 403 security error.
I've noticed that vauschnik has uploaded a C# Library for the Betavine API. I haven't really used C# so can't really test it. Has anybody given it a go?
Owen.
Hi Mike, do you refer to the USSD dbus callback part of the betavine mobile connect software that is used for the 3G datacards on Linux? Kind regards, Nicholas.
Good day, i am working on a project and i need someone to put me through that is familiar with ussd callback . thanks mike
You can still send SMS' to mobile numbers - in some regions. We just can't guarantee service.
Hi Pingp, There is now a link from the GSMA portal through to the Reference Implementation (at oneapi.aepona.com). Follow the 'Tutorials' link (on the left nav bar) to see the stable specifications for RESTful and WS Messaging and Location. The Wiki is where we work on drafts before they are posted on the Reference Implementation. Many thanks Kevin
Where can I find the offical API document and related libs? e.g. as I check "http://gsma.securespsite.com/access/Access%20API%20Wiki/SMS%20Web%20Service%20A PI.aspx", for messaging only sendSMS is defined. Regarding the aepona's RI, the parlay X Messaing API is included.