Siham Hussein
Siham Hussein
https://developer.amazon.com/docs/amazon-drive/ad-restful-api.html They have a drive API maybe they have one specifically for photos as well?
This is essentially a copy of the `GooglePhotosExporter`: https://github.com/google/data-transfer-project/blob/889f1fa92fc54046b42a9448b53d9de0df84912c/extensions/data-transfer/portability-data-transfer-google/src/main/java/org/datatransferproject/datatransfer/google/photos/GooglePhotosExporter.java with some very slight changes to support videos Major Updates: - The logic for albumless photos already makes no distinction between...
Theres documentation and content about the Blobby model in portability-types-transfer whereas the rest of the models live in portability-types-common. https://github.com/google/data-transfer-project/tree/abb554b604329dcacaa62a8b8c5615f6aa47e0bd/portability-types-transfer/src/main/java/org/datatransferproject/types/transfer/models https://github.com/google/data-transfer-project/tree/abb554b604329dcacaa62a8b8c5615f6aa47e0bd/portability-types-common/src/main/java/org/datatransferproject/types/common/models
This is based off of PR #1006 which pulled out some of the reusable functionality from the GooglePhotosImporter. The GoogleMediaImporter is a copy of that file, but with 2 additional...
#1019 added an importer but there is no exporter present
https://www.audiomack.com/data-api/docs See starter code in #681
The `ensureAlbumSize` function in the PhotosContainerResource doesn't look entirely correct https://github.com/google/data-transfer-project/blob/master/portability-types-common/src/main/java/org/datatransferproject/types/common/models/photos/PhotosContainerResource.java#L102-L139 A couple of notable things: - The split assumes that all the images corresponding to the albums are present...
This should fix #934 Note: ideally this would be tracked with a unit test, I'll work on adding that with this PR
#912 for details Currently all the *ContainerResources are marked as serializable (since they extend datamodel) but the underlying types they use are not.