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

소셜 가입

Developing
POST
https://dotorit.duckdns.org/api/v1/auth/social/account-info

Request

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

Example
{
  "authType": "kakao",
  "name": "홍길동",
  "email": "honggildong@example.com",
  "gender": "FEMALE",
  "birthDay": "05-15",
  "birthYear": "1990",
  "phoneNumber": "010-1234-5678",
  "socialAccessToken": "abc123xyz456token"
}

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 POST 'https://dotorit.duckdns.org/api/v1/auth/social/account-info' \
--header 'Content-Type: application/json' \
--data-raw '{
  "authType": "kakao",
  "name": "홍길동",
  "email": "honggildong@example.com",
  "gender": "FEMALE",
  "birthDay": "05-15",
  "birthYear": "1990",
  "phoneNumber": "010-1234-5678",
  "socialAccessToken": "abc123xyz456token"
}'

Responses

🟢200Success
application/json
Body

Example
{}
Modified at 2025-02-27 09:17:17
Previous
토큰 재발급
Next
정보 조회
Built with