เมื่อการดำเนินการของคุณเสร็จสิ้นและคุณได้ดึงข้อมูลทรัพยากรแล้ว
จากการตอบกลับการดำเนินการที่เสร็จสมบูรณ์ คุณก็พร้อมที่จะดาวน์โหลดไฟล์ Zip
ที่มี SDF ที่สร้างขึ้นโดยใช้ media.download
ตัวอย่างวิธีใช้ไลบรารีของไคลเอ็นต์เพื่อดาวน์โหลดไฟล์ผลลัพธ์มีดังนี้
Java
// Extract download file resource name to use in download request String downloadResourceName = operationResponse.getResponse() .get("resourceName").toString(); // Configure the Media.download request Media.Download downloadRequest = service .media() .download(downloadResourceName); // Create output stream for downloaded file FileOutputStream outStream = new FileOutputStream(output-file); // Download file downloadRequest.executeMediaAndDownloadTo(outStream); System.out.printf("File downloaded to %s\n", outputFile);
Python
# Extract download file resource name to use in download request resourceName = operation["response"]["resourceName"] # Configure the Media.download request downloadRequest = service.media().download_media(resourceName=resourceName) # Create output stream for downloaded file outStream = io.FileIO(output-file, mode='wb') # Make downloader object downloader = googleHttp.MediaIoBaseDownload(outStream, downloadRequest) # Download media file in chunks until finished download_finished = False while download_finished is False: _, download_finished = downloader.next_chunk() print("File downloaded to %s" % output-file)
PHP
// Get client and set defer so it doesn't immediately return. $client = $this->service->getClient(); $client->setDefer(true); // Build media download request. $request = $this->service->media->download( $operation->getResponse()['resourceName'], array('alt' => 'media') ); // Call the API, getting the generated SDF. $response = $client->execute($request); $responseBody = $response->getBody(); // Writes the downloaded file. If the file already exists, it is // overwritten. file_put_contents(output-file, $responseBody); $client->setDefer(false); printf('File saved to: %s\n', output-file);
เมื่อดาวน์โหลดและแตกไฟล์แล้ว ไฟล์ Structured Data ที่สร้างขึ้น
จะสามารถใช้งานได้ ไฟล์ที่สร้างขึ้นจะมีชื่อทั่วไป
ที่ระบุประเภทไฟล์ SDF (เช่น SDF-LineItems.csv
)
ไฟล์ที่ข้าม
หากข้อมูลสำหรับทรัพยากรที่ขอไม่สามารถรวมอยู่ใน
Structured Data ไฟล์ ZIP ที่ดาวน์โหลดอาจมีข้อความ "ข้าม" ไฟล์
(เช่น SDF-LineItems-Skipped.csv
) ไฟล์นี้จะมีสองคอลัมน์
โครงสร้างแรกจะมีรหัสของทรัพยากรที่ไม่สามารถ
และรายการที่ 2 คือสาเหตุของการยกเว้น
แหล่งข้อมูลอาจถูกข้ามด้วยเหตุผลหลายประการ ซึ่งรวมถึงการอยู่ในสถานะที่ไม่รองรับ สถานะหรือประเภทที่ไม่รองรับ หลีกเลี่ยงการข้ามทรัพยากรโดยใช้ SDF เวอร์ชันล่าสุด