#!/bin/bash | |
# To download your BellaBaby photos | |
# (people who come to the hospital and take photos of you and your newborn) | |
# Note: They are watermarked - you have to pay (big bucks) for the originals! | |
# This seemed to be the convention for my photos: | |
TAG="<photographer_name><date><your_last_name>" | |
# Files 1-9 have slightly different structure... | |
for i in {1..9} | |
do | |
url="https://bellababy-prod.s3.amazonaws.com/generated/$TAG/watermark/0$i-_-$i.jpg" | |
echo $url | |
wget --no-check-certificate $url | |
done | |
for i in {10..25} | |
do | |
url="https://bellababy-prod.s3.amazonaws.com/generated/$TAG/watermark/$i-_-$i.jpg" | |
echo $url | |
wget --no-check-certificate $url | |
done |
Is this still working. I am getting 403 error message
Replace "watermark" with "image" and you get the original.
This gave me a decent quality image, thank you! This version, while decent, is still a scaled down version. Know of anymore of the magic words that make up the location of the real deal HQ images?
I know of "thumb" and "greyscale" (though these still have watermarks on them too).
Im getting 403 error message. Any resolution for this?
Works for me. Thanks a lot!
Is this working? Can you guys tell me the steps followed?
Replace "watermark" with "image" and you get the original.
This gave me a decent quality image, thank you! This version, while decent, is still a scaled down version. Know of anymore of the magic words that make up the location of the real deal HQ images?
I know of "thumb" and "greyscale" (though these still have watermarks on them too).
the "image" keyword doesn't work for me, I'm looking to get a non watermarked image :(. How did you get the scaled down version?
I missed to note the photographer name. Is there a way I can find it?
Did this work for anyone recently?
Replace "watermark" with "image" and you get the original.
This gave me a decent quality image, thank you! This version, while decent, is still a scaled down version. Know of anymore of the magic words that make up the location of the real deal HQ images?
I know of "thumb" and "greyscale" (though these still have watermarks on them too).the "image" keyword doesn't work for me, I'm looking to get a non watermarked image :(. How did you get the scaled down version?
Ever find a keyword?
I'm unable to download the original image. Can anybody help me to get this?
The above keywords are not working
Yields a 403, was anyone able to surpass this?
Doesn't work with recent formats.. Anybody has any idea? @loisaidasam
@blindnote .. Can you share if it worked with v2 version for you last time?
anything with this? also have v2 but it still uses the "https://bellababy-prod.s3.amazonaws.com/generated/123454321/watermark/03-ACCESSCODE-5311-02.jpg
I'm able to swap the "watermark" for "thumb" and "greyscale" but they also are watermarked
anything with this? also have v2 but it still uses the "https://bellababy-prod.s3.amazonaws.com/generated/123454321/watermark/03-ACCESSCODE-5311-02.jpg
I'm able to swap the "watermark" for "thumb" and "greyscale" but they also are watermarked
I have tried all sort of words, nothing hits the mark. someone has to report the success story!!
The un-watermarked images are in the same location, but are protected with URL signing.
https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/private-content-signed-urls.html
https://docs.aws.amazon.com/AmazonECR/latest/APIReference/CommonParameters.html
A valid URL would looks something like this:
https://bellababy-prod.s3.amazonaws.com/generated/1234567/image/01-YOURACCESSCODE-01.jpg?X-Amz-Expires=7200&X-Amz-Date=20240401T141835Z&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ABCDEFGHIJKLMNOPQRST/20240401/us-east-1/s3/aws4_request&X-Amz-SignedHeaders=host&X-Amz-Signature=ab1cd2ef3gh4ij5kl6mn7op8qr9st0uv1wx2yz3ab4cd5ef6gh78901234567890
I know the last post before this one says its URL signed images - just wondering if anyone had luck with this?
The un-watermarked images are in the same location, but are protected with URL signing. https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/private-content-signed-urls.html https://docs.aws.amazon.com/AmazonECR/latest/APIReference/CommonParameters.html
A valid URL would looks something like this:
https://bellababy-prod.s3.amazonaws.com/generated/1234567/image/01-YOURACCESSCODE-01.jpg?X-Amz-Expires=7200&X-Amz-Date=20240401T141835Z&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ABCDEFGHIJKLMNOPQRST/20240401/us-east-1/s3/aws4_request&X-Amz-SignedHeaders=host&X-Amz-Signature=ab1cd2ef3gh4ij5kl6mn7op8qr9st0uv1wx2yz3ab4cd5ef6gh78901234567890
is there a way to figure out the signature and apply it to each linked photo?
Replace "watermark" with "image" and you get the original.