收藏
回答

文档存在严重的错误

https://developers.weixin.qq.com/doc/oplatform/Third-party_Platforms/2.0/api/Before_Develop/Technical_Plan.html

msg_encrypt = Base64_Encode( AES_Encrypt[ random(16B) + msg_len(4B) + msg + AESKey] )

存在误导用户

msg_encrypt=Base64_Encode(AES_Encrypt [random(16B)+ msg_len(4B) + msg + ])

直接缺了个参数

实际值为:

msg_encrypt = Base64_Encode( AES_Encrypt[ random(16B) + msg_len(4B) + msg + AppId] )

回答关注问题邀请回答
收藏

1 个回答

  • Marmot
    Marmot
    2021-12-20

    文档写的好不好不做评价,随便网上看看都知道微信有多出名。

    最起码写对吧。

    2021-12-20
    有用
    回复
登录 后发表内容