Nutzbarkeit von Restricted Buckets
Basically, request ist glech als public upload, außer param in url `
http://localhost:8009/tmd/api/media_items?restricted=true
3:46
Und in response bekommst du url property für jedes image (original und thumbnails), die sind pre-signed urls, valid for 5 minutes
3:47
Wann du die ImageRef oder ThumbnailRef anfragst, bekommst du neue pre-signed url
3:47
{
imageRef(id:"/image_refs/6"){
id,
ref,
height,
width,
url,
thumbnailRefs {
edges {
node {
id
}
}
}
}
}
3:47
Zum Beispiel
Lars Kollmann:man_dancing: 3:48 PM
oho
Miroslav Jovanovic 3:49 PM
{
imageRef(id:"/image_refs/6"){
id,
ref,
height,
width,
url,
thumbnailRefs {
edges {
node {
id
url
}
}
}
}
}
Du kannst auch url für Thumbnail anfragen
Edited by Michael Voigt