| 1 | <?php |
||
| 10 | class Soter extends AbstractAPI |
||
| 11 | { |
||
| 12 | const API_VERIFY_SIGNATURE = 'https://qyapi.weixin.qq.com/cgi-bin/soter/verify_signature'; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * Verify signature. |
||
| 16 | * |
||
| 17 | * @param string $openid |
||
| 18 | * @param string $jsonString |
||
| 19 | * @param string $jsonSignature |
||
| 20 | * |
||
| 21 | * @return \EntWeChat\Support\Collection |
||
| 22 | */ |
||
| 23 | public function verify($openid, $jsonString, $jsonSignature) |
||
| 33 | } |
||
| 34 |