我正在建立一个网站,我从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,并借助我可以获取用户存储的谷歌驱动器的内容。
答案 0 :(得分:1)
Google云端硬盘确实有API。请参阅:What Can You Do with the Drive Platform?
使用PHP快速入门:Quickstart: Run a Drive App in PHP。它包括几个代码示例。