My Project
  1. User
My Project
  • local
    • Auth
      • 회원 탈퇴
      • 토큰 재발급
      • 소셜 가입
    • User
      • 정보 조회
      • 추가 정보 가입
      • 닉네임 중복 검사
      • 회원 정보 수정
  • dev
    • Auth
      • 탈퇴
      • 토큰 재발급
      • 소셜 가입
    • User
      • 정보 조회
        GET
      • 추가 정보 가입
        POST
      • 닉네임 중복 검사
        GET
      • 회원 정보 수정 Copy
        PATCH
      • 회원가입 태그 데이터 반환
        GET
      • 추천 게시물 키워드 편집
        PUT
    • board
      • 게시글 작성
      • 내가 쓴 글 조회
      • 게시글 저장하기
      • 게시글 저장 취소
      • 저장한 게시글 조회
    • DotoriToken
      • 도토리 내역 조회
      • 도토리 개수 조회
      • 도토리 선물하기
  1. User

추천 게시물 키워드 편집

Developing
PUT
https://dotorit.duckdns.org/api/v1/user/modify-boardKeyword

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Header Params

Body Params text/plain
Example
Example:[ "트렌드", "커리어 성장", "멘토 찾아요", "프로젝트", "교육 후기" ]

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PUT 'https://dotorit.duckdns.org/api/v1/user/modify-boardKeyword' \
--header 'Content-Type: application/json' \
--data-raw '[
    "트렌드",
    "커리어 성장",
    "멘토 찾아요",
    "프로젝트",
    "교육 후기"
  ]'

Responses

🟢200Success
application/json
Body

Example
{}
Modified at 2025-02-27 09:07:12
Previous
회원가입 태그 데이터 반환
Next
게시글 작성
Built with