Can't open downloaded attachments from Gmail API

前端 未结 3 541
孤街浪徒
孤街浪徒 2021-01-22 22:59

I feel like I\'m missing something stupid...

I\'m using the PHP SDK for the new Gmail API to fetch an attachment from an email. I can get the attachment content, but un

3条回答
  •  隐瞒了意图╮
    2021-01-22 23:18

    Try the following to decode returned attachment data before writing it to file.

    $attachment_data = urlsafe_b64decode(utf8_encode($data->data));
    

    worked for me.

提交回复
热议问题