我试图通过symfony发送一个Apple Push Notification,但我发现了一个库:
https://github.com/ZhukV/AppleApnPush/blob/master/docs/index.md
但是当我尝试创建令牌时:
use Apple\ApnPush\Jwt\Jwt;
use Apple\ApnPush\Protocol\Http\Authenticator\JwtAuthenticator;
$jwt = new Jwt('3ACZ5G52M2', '1V33HJ3524', '/config/jwt/AuthKey_1V33HJ3524.p8');
$authenticator = new JwtAuthenticator($jwt);
我收到错误消息:无法解析可用的JWT签名生成器。
然后,您知道另一种创建方式,或者我该如何解决此问题,谢谢