0

"isRegistered"API 다음은 this 샘플 코드입니다. 보안 컨텍스트에서 전화 번호를 얻는 방법을 이해하지 못했습니다. 내가 사용하려는ibm-mobile은 보안 컨텍스트에서 처음으로 어떻게 모바일 번호를 얻습니까?

이 API는 다음과 같습니다

@Path("/isRegistered") 
@GET 
@Produces("application/json") 
@OAuthSecurity(enabled = true) 
@ApiOperation(value = "Check if a phone number is registered", 
     notes = "Check if a phone number is registered", 
     httpMethod = "GET", 
     response = Boolean.class 
) 
@ApiResponses(value = { 
     @ApiResponse(code = 200, message = "OK", 
       response = String.class), 
     @ApiResponse(code = 401, message = "Not Authorized", 
       response = String.class), 
     @ApiResponse(code = 500, message = "Cannot check if phone number is registered", 
       response = String.class) 
}) 

public Boolean isRegistered() { 
    //Getting client data from the security context 
    ClientData clientData = securityContext.getClientRegistrationData(); 
    if (clientData == null) { 
     throw new InternalServerErrorException("This check allowed only from a mobile device."); 
    } 

    String number = clientData.getProtectedAttributes().get(SMSOTPSecurityCheck.PHONE_NUMBER); 
    return number != null && !number.trim().equals(""); 
} 

어떻게 보안 컨텍스트는 클라이언트의 전화 번호가 무엇입니까?

+0

질문 본문에 코드를 포함하십시오 – mhatch

답변

0

이 샘플에는 클라이언트 프로젝트도 있습니다. 전체 샘플을 참조하십시오./"(어댑터 code 경로 @Path 지금

MainViewController.codeDialog("Phone Number", message: "Please provide your phone number",isCode: true) { (phone, ok) -> Void in 
if ok { 
     let resourseRequest = WLResourceRequest(URL: NSURL(string:"/adapters/smsOtp/phone/register/\(phone)")!, method:"POST") 
..... 

: 클라이언트 측 로직 here

, 사용자는 어댑터 호출에서 서버로 전송되는 전화 번호를 제공하도록 요청/{PHONENUMBER이} ") 다음 코드를 발견 등록 : 전화 번호가 보안 컨텍스트에 그것을 만들었다 방법

clientData.getProtectedAttributes().put(SMSOTPSecurityCheck.PHONE_NUMBER, phoneNumber); 
    securityContext.storeClientRegistrationData(clientData); 

이입니다.

샘플을 실행하고 Wireshark와 같은 도구를 사용하여 클라이언트와 서버 간의 데이터 흐름을 분석하십시오.

+0

휴대폰 번호가 등록되지 않은 경우에만 등록하고 싶습니다. 그래서 등록되어 있는지 확인하려면 먼저 "isRegistered"API를 호출하고 싶습니다. 그렇다면 "isRegistered"API는 어떻게 모바일 번호를 얻습니까? 예를 들어, 내 apk 파일은 두 대의 모바일 장치에 설치됩니다. 하나의 모바일 번호가 서버에 등록되어 있고 다른 번호는 등록되어 있지 않습니다. 휴대폰 번호를 보내지 않을 때 서버가 두 장치를 어떻게 구별합니까? 어디에서 전화가 왔는지 어떻게 알 수 있습니까? – dhiraka

+0

전체 프로젝트를 사용할 수 있으므로 모든 질문을하기 전에 먼저 시도해 보시기 바랍니다. Wireshark는 어떤 매개 변수가 서버에 도달하고 어떤 서버가 응답 하는지를 보여주는 훌륭한 도구입니다. –