웹 로그인 검증하기 v2
로그인 후 로그인 정보를 검증하는 API입니다. 응답값으로 idp_user_id
를 반환합니다.
- Request URL
상용 URL https://weblogin.withhive.com/idp_info_v2 Sandbox URL https://sandbox-weblogin.withhive.com/idp_info_v2
- Request Header
HTTP Method POST Content-Type application/json
- Request Body
필드명 타입 설명 필수 여부 state string state는 웹 로그인 v2 응답으로 얻은 토큰값입니다.
Y
- Request Example
1234// Curl 호출 예제.curl -X POST https://weblogin.withhive.com/idp_info_v2-H "Content-Type: application/json"-d "{'state': '1635746185469-kENCXIBhaSezW'}"
- Response Body
검증 성공 여부 코드와 idp 정보를 반환합니다.
필드명 설명 타입 필수 여부 code 검증 성공 여부 int Y appid Application ID string Y idp_index idp 종류 (hive:1, facebook: 2, google: 3, apple: 9) int Y idp_user_id IdP에서 전달받은 Account Token(uid) string Y code 설명 100 성공 2021 idp 인증 완료를 하지 않은 유저 이거나, 유저의 세션이 만료된 경우
- Response Sample
123456{"code": 100,"appid": "com.com2us.smon.normal2.freefull.google.global.android.common","idp_index": 1,"idp_user_id": "67180714"}