在Python中解码Base64 URL,可以使用base64模块的urlsafe_b64decode()函数。urlsafe_b64decode()函数可以解码Base64 URL编码的字符串,并返回解码后的原始数据。
下面是一个完整的示例代码:
import base64
def decode_base64_url(base64_url):
# 将Base64 URL编码的字符串转换为字节流
base64_bytes = base64_url.encode('utf-8')
# 使用urlsafe_b64decode()函数解码Base64 URL编码的字符串
decoded_bytes = base64.urlsafe_b64decode(base64_bytes)
# 将解码后的字节流转换为字符串
decoded_string = decoded_bytes.decode('utf-8')
return decoded_string
# 示例用法
base64_url = 'SGVsbG8gV29ybGQh'
decoded_string = decode_base64_url(base64_url)
print(decoded_string)
输出结果为:
Hello World!
在上述示例代码中,首先将Base64 URL编码的字符串转换为字节流,然后使用urlsafe_b64decode()函数解码字节流,最后将解码后的字节流转换为字符串。注意,解码后的字符串编码方式需要与原始数据的编码方式一致。
关于Base64 URL编码的概念、分类、优势、应用场景以及腾讯云相关产品和产品介绍链接地址,可以参考腾讯云的官方文档或者咨询腾讯云的技术支持团队。
领取专属 10元无门槛券
手把手带您无忧上云