애플 앱 인증 로그 인
2948 단어 Java
애플 앱 개발 완료 후 위 챗 QQ 원 키 로그 인 을 지원 합 니 다. 심사 시 애플 로그 인 을 요구 합 니 다. 애플 로그 인 은 두 가지 방식 이 있 습 니 다. 하 나 는 jwt 이 고 다른 하 나 는 권한 수여 코드 모델 입 니 다. 여 기 는 jwt 모델 을 사용 하여 언어 를 자바 로 개발 합 니 다.
코드 구현
관련 기술 사용: jwt + restTemplate + fastjson
/**
* apple token
* @param jwt
* @return
* @throws Exception
*/
@Override
public JSONObject appleAuth(String jwt) throws Exception {
// identityToken
String[] jwtArray = jwt.split("\\.");
String claim = new String(Base64.decodeBase64(jwtArray[1]));
JSONObject claimJson = JSONObject.parseObject(claim);
// kid
String header = new String(Base64.decodeBase64(jwtArray[0]));
JSONObject headerJson = JSONObject.parseObject(header);
//
String body = restTemplate.getForObject("https://appleid.apple.com/auth/keys",String.class);
JSONObject jsonObject = JSONObject.parseObject(body);
String keys = jsonObject.getString("keys");
JSONArray arr = JSONObject.parseArray(keys);
JSONObject appleKey1 = JSONObject.parseObject(arr.getString(0));
JSONObject appleKey2 = JSONObject.parseObject(arr.getString(1));
JSONObject appleKey = appleKey1;
if( !headerJson.getString("kid").equals(appleKey1.getString("kid")) ){
appleKey = appleKey2;
}
//
BigInteger modulus = new BigInteger(1, Base64.decodeBase64(appleKey.getString("n")));
BigInteger publicExponent = new BigInteger(1, Base64.decodeBase64(appleKey.getString("e")));
RSAPublicKeySpec rsaPublicKeySpec = new RSAPublicKeySpec(modulus, publicExponent);
// PublicKey
KeyFactory kf = KeyFactory.getInstance("RSA");
PublicKey publicKey = kf.generatePublic(rsaPublicKeySpec);
//
return verify(publicKey,jwt,claimJson);
}
public JSONObject verify(PublicKey key, String jwt, JSONObject claimJson){
//
JSONObject result = new JSONObject();
boolean status = false;
//
JwtParser jwtParser = Jwts.parser().setSigningKey(key);
jwtParser.requireIssuer(claimJson.getString("iss"))
.requireAudience(claimJson.getString("aud"))
.requireSubject(claimJson.getString("sub"));
try {
Jws claim = jwtParser.parseClaimsJws(jwt);
if (claim != null && claim.getBody().containsKey("auth_time")) {
//
status = true;
//
result.put("sub",claimJson.getString("sub"));
}
}catch (Exception e) {
log.error(" ");
}
result.put("status",status);
return result;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
JPA + QueryDSL 계층형 댓글, 대댓글 구현(2)이번엔 전편에 이어서 계층형 댓글, 대댓글을 다시 리팩토링해볼 예정이다. 이전 게시글에서는 계층형 댓글, 대댓글을 구현은 되었지만 N+1 문제가 있었다. 이번에는 그 N+1 문제를 해결해 볼 것이다. 위의 로직은 이...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.