42-PINTING / BE-PINTING-gateway

0 stars 0 forks source link

[API] /me #6

Open contemplation-person opened 5 months ago

contemplation-person commented 5 months ago

목적

유저 자신의 프로필 정보를 받아오는 api

API 범위

JWT header 포함 여부

API 방식 및 주소

[GET] secreat_server_api/me

API request

API response code

성공: 200 실패: 401

API response

// 성공시
type BlockEmail = string;

export type ProfileProps = {
  email: string;
  nickname: string;
  image: string;
  permission: 'admin' | 'user';
};

✅ To-do

기타

공개되면 안되는 api가 있을 수 있으니까 env에다가 추가하는 걸 추천합니다. api 생성 후 알려주세요.

contemplation-person commented 4 months ago

@jeongyunnim permission 제거가 적적해보임 (/permission api 요청 참고)