不好意思想请教各位大大
小弟在heroku架了一个server来接收linebot的图片讯息
接收到的图片想直接存到google drive
在接收方面没有问题
从line获得的图片内容是class 'bytes'的型态
把这个内容丢到pydrive的函式 SetContentString 却出现 AttributeError: 'bytes' ob
ject has no attribute 'encode'
P.S. 这是SetContentString的函式
self.content = io.BytesIO(content.encode(encoding))
我尝试用另一个方式
gfile.content = message_content
来传送bytes形态的图片,却出现 AttributeError: bytes object has no attribute se
ek
小弟之前都是在本地端用setcontentfile的方式以档案上传,不知道在服务器端如何以不
是档案的方式传送,在猜是不是要encode或decode的方式解决问题,恳请高手解答!