240 发简信
IP属地:广东
  • $header_decode = base64_decode($header);
    //$header_decode这个得出来的是字符串,下面的这个步骤再转为字符串,应该得不到数组吧,json_encode是否应该更改为:json_decode
    $header_json =json_encode($header_decode);

    另外就是:JWT::decode($jwt, $pubkey, array($header_json['alg']));更改为:
    JWT::decode($jwt, new Key("-----BEGIN CERTIFICATE-----\n".$header_json['x5c'][0]."\n-----END CERTIFICATE-----", $header_json['alg']));也许会方便一些

    苹果商店退款API PHP验签 signedPayload

    苹果商店后台配置服务端退款和订阅通知接受地址打开 https://appstoreconnect.apple.com/apps[https://appstoreconnec...