💥

유저 상세 read

URL
/user/{userToken}
유저
method
GET
유저 정보만 줍니당. 게시글이나 모임글 정보는 다른 API 활용해서 추가해주세요.

Request Headers

Header
Type
Required
Description
Authorization
String
Yes
Bearer JWT access token.

Request Parameters

Parameter
Type
Required
Description
userToken
String
Yes
The unique token associated with the user.
Example Request
GET /user/abc123-unique-user-token HTTP/1.1 Host: api.yourdomain.com Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...
Plain Text
복사

Response

Field
Type
Description
nickname
String
The nickname of the user.
description
String
The description of the user.
univName
String
The university name of the user.
profileImage
String
The URL of the user's profile image.
isBlocked
boolean
본인이 이 유저를 차단했는지 여부
token
String
UUID
Example Response (200 OK)
{ "token": "sdfdwejdnadsa", "nickname": "exampleUser", "description": "This is an example user.", "univName": "Example University", "profileImage": "https://example.com/profile-image.png", "blocked": true }
JSON
복사

Error Responses

404 Not Found: When the user with the provided userToken does not exist.
{ "status": 404, "error": "USER_NOT_FOUND", "message": "해당 유저를 찾을 수 없습니다." }
JSON
복사
401 Unauthorized: When the provided JWT token is invalid or expired.
{ "status": 401, "error": "INVALID_TOKEN", "message": "유효하지 않은 JWT 토큰입니다." }
JSON
복사
403 forbidden : 차단된 유저의 정보일때
{ "error": "USER_BLOCKED", "message": "차단된 유저의 정보입니다.", "status": 403 }
JSON
복사