This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
##设计说明 | |
####设备信息 | |
在设计中考虑到了以下信息: 设备硬件信息、生产商信息、使用者信息 | |
####接口签名方式 | |
签名通常有md5和rsa两种、设计中做了可扩展考虑、为简单期间、目前只使用md5方式。 | |
签名过程 | |
sign_result = md5(sign_source_string+key),原串拼接上key做md5既是签名结果 | |
sign_source_string是参数列表的名值对、举例 | |
请求:p1=v1&p2=v2&p3=v3 |