We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
/v1/service/users?userIds=1 { "code": 200, "data": [ { "userId": 1, "profileImgUrl": null, "nickname": "슬픈다이버_00001", "roleLevel": 5, "roleLevelCode": "UNREGISTER", "licenceLevel": 2, "licenceImgUrl": "https://aws-s3.com", "licenceValidTF": false } ], "msg": null }
/v1/service/users?userIds=1&profileImg=true { "code": 200, "data": [ { "userId": 1, "profileImgUrl": "http://k.kakaocdn.net/dn/bkdpGG/btsEWx6DDgt/mMr9PU97d7i7OfLtyVkJ30/img_640x640.jpg", "nickname": "슬픈다이버_00001", "roleLevel": 5, "roleLevelCode": "UNREGISTER", "licenceLevel": 2, "licenceImgUrl": "https://aws-s3.com", "licenceValidTF": false } ], "msg": null }
/v1/service/users?userIds=25 { "code": 200, "data": [ { "userId": 25, "profileImgUrl": null, "nickname": null, "roleLevel": null, "roleLevelCode": null, "licenceLevel": null, "licenceImgUrl": null, "licenceValidTF": null } ], "msg": null }
/v1/service/users?userIds=V { "type": "about:blank", "title": "Bad Request", "status": 400, "detail": "Failed to convert 'userIds' with value: 'V'", "instance": "/v1/service/users" }
/v1/service/users?userIds=1,4,2,3,1,2,3,4 { "code": 200, "data": [ { "userId": 1, "profileImgUrl": null, "nickname": "슬픈다이버_00001", "roleLevel": 5, "roleLevelCode": "UNREGISTER", "licenceLevel": 2, "licenceImgUrl": "https://aws-s3.com", "licenceValidTF": false }, { "userId": 4, "profileImgUrl": null, "nickname": null, "roleLevel": null, "roleLevelCode": null, "licenceLevel": null, "licenceImgUrl": null, "licenceValidTF": null }, { "userId": 2, "profileImgUrl": null, "nickname": "가재다이버_00002", "roleLevel": 5, "roleLevelCode": "UNREGISTER", "licenceLevel": null, "licenceImgUrl": null, "licenceValidTF": null }, { "userId": 3, "profileImgUrl": null, "nickname": "새우다이버_00003", "roleLevel": 5, "roleLevelCode": "UNREGISTER", "licenceLevel": null, "licenceImgUrl": null, "licenceValidTF": null } ], "msg": null }
The text was updated successfully, but these errors were encountered:
feat: #86 - 마이크로 서비스간 통신을 위한 시큐리티 설정 변경
1866d5f
feat: #86 - 유저 서비스간 조회 인터페이스 기능 추가
3ee1cba
refactor: #86 - 유저 로그인 시 응답 포맷 내 닉네임 정보 추가
dc2dfec
test: #86 - 유저 인터페이스 조회 컨트롤러 단위 테스트 작성
932bf15
#86 - MemberService 유저 인터페이스 조회 추가
afca75b
sasca37
No branches or pull requests
유저 조회 인터페이스 API
단건 조회하는 경우 (성공) - 프로필 정보 사용 안하는 경우
단건 조회하는 경우 (성공) - 프로필 정보 사용 하는 경우
단건 조회하는 경우 (성공) - �없는 유저를 조회하는 경우
단건 조회하는 경우 (실패) - �유저 아이디 값이 Number 포맷에 안맞는 경우
여러 유저 조회하는 경우 (성공) - 중복 필터링, 없는 유저 (4번) 포함
The text was updated successfully, but these errors were encountered: