Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: C12832 EthernetInterface HTTPClient Speaker USBDevice mbed-rtos mbed
proxy.php
- Committer:
- RiiQQe
- Date:
- 2016-02-12
- Revision:
- 3:2f7b22ffcf23
- Parent:
- 2:59edfc0fd52f
File content as of revision 3:2f7b22ffcf23:
<?php
require('codebird.php');
$date = new DateTime();
$msg = "Something went wrong";
//$msg = $_GET['msg'] . " // " . $date->getTimestamp();
$msg = "Score: " . $_GET['msg'] . " // " . date('Y-m-d', strtotime('+8 hours')) . " - " . date('h:i:sa', strtotime('+8 hours')) . " #snakeGame #teamSweden" ;
// Set keys
$consumerKey = 'XHO3e2fiS44d5i7xc6mvtvDdZ';
$consumerSecret = '9U4WOjRnpM5Pj0Qv4f6406jTRfN65YY5GeE5PRXHuhPfSiWhEN';
$accessToken = '4761221959-n4ojXEYR4DZSA4eeqt1WetVHHrZWTUNLJJ9ql3o';
$accessTokenSecret = 'SXM05FPIW9SUgTYYgpk4buPcypwXIsLDIY3TRns01WRJP';
\Codebird\Codebird::setConsumerKey($consumerKey, $consumerSecret);
$cb = \Codebird\Codebird::getInstance();
$cb->setToken($accessToken, $accessTokenSecret);
$params = array(
'status' => $msg
);
$reply = $cb->statuses_update($params);
?>