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
<?
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 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.
Hi,
We would like to offer a location API and are currently in the process of discussing the security and privacy issues involved in doing so.
There is a policy document that outlines the steps providers who offer location-based services should adhere to. We are currently reviewing this.
One issue we have is that location information is handled differently in various countries and mobile operators, making it very difficult for us to offer a global location service. Since we are trying to make the site accessible by everyone, we are looking at ways we could provide global location information. We would certainly like to launch with support in several countries where the majority of our developers are based.
I'll keep everyone updated on this functionality via the API Blog and forum.
thanks,
Pete
2009
(2 posts)
April
(1 post)
February
(1 post)
2008
(6 posts)
July
(2 posts)
April
(3 posts)
March
(1 post)
2007
(9 posts)
October
(1 post)
July
(3 posts)
June
(4 posts)
May
(1 post)