我使用python base64.b64decode()来解码使用REST API从谷歌获取的一些字符串。我能够解码小块但不能解码整个编码的字符串。我尝试了长达4k的字符串来解码,但是完整的字符串(长度为21k)无法解码。
base64.b64decode()的输入长度是否有限制。
示例代码
import base64
encoded_buffer = "ICAgICAgICAgIC<omitting long string (21k long) fetched from google>"
decoded_buffer = base64.b64decode(encoded_buffer)