获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
/**PHP * 实际测试中发现部分格式企微识别有误 也可能是图片本身问题 没详尽研究 * 未通过 PNG image data, 1500 x 800, 8-bit gray+alpha, non-interlaced * 通过 JPEG image data, JFIF standard 1.01 */ $image = 'xx.jpeg'; $base64 = base64EncodeImage($image); $md5 = md5_file($image); function base64EncodeImage($image_file) { $image_data = fread(fopen($image_file, 'rb'), filesize($image_file)); return base64_encode($image_data); }
企业微信机器人发送图片报media md5 not match?media md5 not match, hint: [1589186279_51_26e4b408a53bf40d91d5ccd88d1c6d18], from ip: 223.68.196.14, more info at https://open.work.weixin.qq.com/devtool/query?e=301019
2021-11-17