エラーはありません。なぜファイルが送信されないのですか?PHP gdriveアップロードファイル
error_reporting(E_ALL);
ini_set('display_errors',1);
try{
require_once './vendor/autoload.php';
$client = new Google_Client();
$oauth_credentials = './vendor/test.json';
$client = new Google_Client();
$client->setAuthConfig($oauth_credentials);
$client->setScopes('https://www.googleapis.com/auth/drive');
$driveService = new Google_Service_Drive($client);
$fileMetadata = new Google_Service_Drive_DriveFile(array(
'name' => 'photo.png'));
$content = file_get_contents('./vendor/plik.png');
$file = $driveService->files->create($fileMetadata, array(
'data' => $content,
'mimeType' => 'image/png',
'uploadType' => 'multipart',
'fields' => 'id'));
printf("File ID: %s\n", $file->id);
}catch(Exception $e){
echo $e->getMessage();
}
https://paste.ofcode.org/q3kBbhxzHEiGDPkdDPCVwi
ようこそスタックオーバーフロー。私たちはあなたが求めているものを理解するために別の場所に行くことはありません。関連するすべてのコードは、質問自体にここになければなりません。 [ask]と[mcve]を参照して、あなたの投稿を元に戻って[編集]し、問題を示すために必要な最小限のコードを追加してください。また、コードを記述するために使用している言語用のタグを、関連性のある明確なタグとして含めることもできます。 (はい、私はタイトルでPHPを参照してください、しかし、それは、将来の読者がここで検索するときにタグでも使用する必要があります。) –