我在php中实现云存储api,用于上传mp3文件并在网站中加载。 我想在没有授权的情况下上传文件对话框是否可能?有没有oauth2的样品吗?
答案 0 :(得分:2)
进入云存储的一切都需要授权密钥。您可以在没有用户登录的情况下设置服务帐户获取承载密钥。我从google-api-php-client修改了一些代码。提供持票人密钥。使用以下内容。
function getMediaKey(){
/************************************************
Make an API request authenticated with a service
account.
************************************************/
set_include_path("../google-api-php-client/src/" . PATH_SEPARATOR . get_include_path());
require_once 'Google/Client.php';
$client_id = '<your clientid>';
$service_account_name = '<serviceaccountemail';
$key_file_location = '< location of you privatekey.p12>';
//echo pageHeader("Service Account Access");
if ($client_id == '<YOUR_CLIENT_ID>'
|| !strlen($service_account_name)
|| !strlen($key_file_location)) {
echo missingServiceAccountDetailsWarning();
}
$client = new Google_Client();
$key = file_get_contents($key_file_location);
$cred = new Google_Auth_AssertionCredentials(
$service_account_name,
array('https://www.googleapis.com/auth/devstorage.full_control'),
$key
);
$client->setAssertionCredentials($cred);
if($client->getAuth()->isAccessTokenExpired()) {
$client->getAuth()->refreshTokenWithAssertion($cred);
}
$bearerKey = $client->getAccessToken();
return $bearerKey;
}
然后您可以使用承载密钥发布媒体文件 结帐https://developers.google.com/storage/docs/json_api/ 试试这个例子