safari - How to generate the Apple certificate properly? -
i've followed tutorial on this website if want save results message prevents me saving results:
1 error prohibited sender being saved:
- apns certificate or private key not valid
but why error? i've tried couple of methods, placing -----begin certificate----- , placing without it, nothing works. i've created couple of certificates each 1 false according error.
have forgot do?
placing -----begin certificate----- , placing without it, nothing works.
you must copy , paste whole content of files, including -----begin certificate-----
, ----- end certificate-----
.
but why error?
you have done error in 1 of steps: error means certificates not valid. not valid in general (e.g. malformed, etc.): not specific related push notifications, apns or pushpad.
if know ruby, can see exception raised certificates running following snippet:
private_key = openssl::pkey.read apns_private_key certificate = openssl::x509::certificate.new apns_certificate pkcs12 = openssl::pkcs12.create(nil, nil, private_key, certificate) pkcs12.to_der
otherwise contact support@pushpad.xyz , attach cert/private key can try help.
Comments
Post a Comment