我经常旅行,我有一个很酷的想法,那就是创建一个网站 whereiskavi.com 来展示我当时所在的城市。很简单,我用纬度!或者我是这么想的。
我的研究给我带来了挑战。oauth 需要从浏览器提示,显然我不能授权每一次点击。现在我使用的应用程序不会经常重新提示我进行授权,但到目前为止,我能够做到这一点的唯一方法是获取一个 oauth json 字符串并将其粘贴,然后等待它过期. 下面的代码有效,但仅在到期日之前有效。
我的问题 - 我如何永久授权我的应用程序始终查看我的帐户?
到目前为止,这是我成功的代码:
<?php
require_once '../../src/Google_Client.php';
require_once '../../src/contrib/Google_LatitudeService.php';
require_once 'gogeocode-0.2/src/GoogleGeocode.php';
$client = new Google_Client();
$client->setClientId('0000000000000.apps.googleusercontent.com');
$client->setClientSecret('abcdefghijklmnopqrstuvwxyz');
$client->setApplicationName("whereiskavi.com");
$mapsApiKey = 'mApSApIKEy';
$access_token = '{"access_token":"CENSORSHIP_YEAH","token_type":"Bearer","expires_in":3600,"refresh_token":"THIS_MIGHT_BE_SENSITIVE DATA","created":1351291247}';
$client->setAccessToken($access_token);
$service = new Google_LatitudeService($client);
$location = $service->currentLocation->get();
$geo = new GoogleGeocode($mapsApiKey);
$result = $geo->geocode( $location['latitude'].', '.$location['longitude']);
$result = $result['Placemarks'][0];
echo '<h1>'.strtoupper($result['Locality'].', '.$result['AdministrativeArea']).'</h1>';
?>
我真的只需要弄清楚如何进行永久的oauth会话或其他东西!