নোট এবং সংযুক্তি পুনরুদ্ধার করুন

নিম্নলিখিত নমুনা দেখায় কিভাবে একটি নোট এবং তার সংযুক্তি পুনরুদ্ধার করতে হয়:

বিশ্রাম

সংযুক্তি ডাউনলোডের নাম এবং alt=media URL প্যারামিটার সহ media.download() এ কল করুন। alt=media URL প্যারামিটার সার্ভারকে বলে যে একটি সামগ্রী ডাউনলোডের অনুরোধ করা হচ্ছে।

সংযুক্তির নাম পেতে, আপনাকে প্রথমে নোটটি পুনরুদ্ধার করতে হবে।

জাভা

/**
 * Gets and downloads the attachment of a note.
 *
 * @param note The note whose attachment will be downloaded.
 * @throws IOException
 */
private void getNoteAttachment(Note note) throws IOException {
  // First call is to get the attachment resources on the note.
  List<Attachment> attachments =
      keepService.notes().get(note.getName()).execute().getAttachments();

  if (!attachments.isEmpty()) {
    Attachment attachment = attachments.get(0);
    String mimeType = attachment.getMimeType().get(0);
    // A second call is required in order to download the attachment with the specified mimeType.
    OutputStream outputStream = new FileOutputStream("attachmentFile." + mimeType.split("/")[1]);
    keepService
        .media()
        .download(attachment.getName())
        .setMimeType(mimeType)
        .executeMediaAndDownloadTo(outputStream);
  }
}