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.
It is not like windows. It basically lets you launch your applications anyway you want to do it from abbreviation to short keys. I have never had a problem with it. There are two features that I like the best. One is that I can launch my applications as individual application or as a group. It doesn't care. The other feature is that I can use short keys to run scripts, open application, close application, etc. Remember, you can you Butler to assign short key to commands in applications as well such as itunes. Butler doesn't take up any additional space since it is incorporated in the menu bar. In addition, the bookmark organization is great feature also. There is really so many things that Butler can do that all I can say is try it and see for yourself. __________________________________________________ Ben 10 Games
I would like the vodafone mobile connect to minimize after it is launched leaving the tray icon only so that i can easily connect and disconnect as required, are there any extensions i can place on the end of the command to do this ? by the way this app is extremely good, credit to all who helped produce this.
I think this error is related: "The DNS settings received from the mobile network are invalid. You will probably want to restart your connection or if the problem persists you can specify a static DNS in the connection preferences." Has anyone any info on this error?
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.