从动态获取谷歌驱动器中的内容

时间:2014-10-28 12:50:52

标签: php google-drive-api dropbox-api

我正在建立一个网站,我从dropbox和google驱动器中获取内容。 我有dropbox的api:

<?php

/* Please supply your own consumer key and consumer secret */
$consumerKey = '';
$consumerSecret = '';

include 'Dropbox/autoload.php';

session_start();
$oauth = new Dropbox_OAuth_PHP($consumerKey, $consumerSecret);

// If the PHP OAuth extension is not available, you can try
// PEAR's HTTP_OAUTH instead.
// $oauth = new Dropbox_OAuth_PEAR($consumerKey, $consumerSecret);

$dropbox = new Dropbox_API($oauth);
?>

但我没有在php中获得GOOGLE DRIVE的api。 请帮助我完成这个,以便我可以在php中获取谷歌驱动器的API,并借助我可以获取用户存储的谷歌驱动器的内容。

1 个答案:

答案 0 :(得分:1)

Google云端硬盘确实有API。请参阅:What Can You Do with the Drive Platform?

使用PHP快速入门:Quickstart: Run a Drive App in PHP。它包括几个代码示例。