I'd like to get a thumbnail url of Google slides' page. I checked that I can get a first page's thumbnail url by
var file = DriveApp.getFileById('IdOfSlide')
var url = Drive.Files.get(file.getId()).thumbnailLink
However I can not get a thumbnail url of a page in the middle of a slide, like page 10 or so.
Is there any way to get the thumbnail url of each page?