Created
June 6, 2022 12:49
-
-
Save khushhalm/bb07d1cbcc5cb92e994183de32d4facc to your computer and use it in GitHub Desktop.
Generate JWT token for Apple iOS inApp subscription using p8 private key file
This file contains 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
import com.nimbusds.jose.JWSAlgorithm; | |
import com.nimbusds.jose.JWSHeader; | |
import com.nimbusds.jose.JWSSigner; | |
import com.nimbusds.jose.crypto.ECDSASigner; | |
import com.nimbusds.jwt.JWTClaimsSet; | |
import com.nimbusds.jwt.SignedJWT; | |
public class JWTUtil { | |
public static String generateJWTForiOS() { | |
String token = ""; | |
try { | |
String kid = ""; | |
String iss = ""; | |
String aud = "appstoreconnect-v1"; | |
String bid = ""; | |
// current date as Date object | |
Date now = new Date(); | |
// current date plus 20 minutes as Date object | |
Date exp = new Date(now.getTime() + 20 * 60 * 1000); | |
PrivateKey key = loadiOSPrivateKey(); | |
JWTClaimsSet claimsSet = new JWTClaimsSet | |
.Builder() | |
.audience(aud) | |
.expirationTime(exp) | |
.issueTime(now) | |
.issuer(iss) | |
.claim("bid", bid) | |
.build(); | |
JWSHeader header = new JWSHeader | |
.Builder(JWSAlgorithm.ES256) | |
.keyID(kid) | |
.build(); | |
SignedJWT signedJWT = new SignedJWT(header, claimsSet); | |
JWSSigner signer = new ECDSASigner((java.security.interfaces.ECPrivateKey) key); | |
signedJWT.sign(signer); | |
token = signedJWT.serialize(); | |
System.out.println(token); | |
} catch (Exception e) { | |
e.printStackTrace(); | |
} | |
return token; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment