If I use Python's base64 standard functions, or the unix base64 command, then often padding (equals signs) is added to the string:
aHR0cHM6Ly93d3cuYnVydG9uaW5pLmNvbS90ZW1wL2Vhcmx5LWdyZWVuLnJzcw==
However, if I use this padded string on pod.link then the decoding fails and it doesn't work. Strip the padding and the link works.
This makes integration somewhat annoying, as the padding has to be manually removed. The padding doesn't change the output, so this seems like a bug in the decoder.