I received a string encoded with base64, I am using python to decode it, but decoding failed, I found that the string is followed by / ends, I don't know how to decode it, I haven't found the answer, who can Help me
data = 'dXN1c19pZD0xMDg2P2RvY01kPTE3Mzc4JnR5cGU9bmV3/'print(base64.urlsafe_b64decode(data))
print(base64.standard_b64decode(data))
print(base64.b64decode(data))