TreeNut-KR / ChatBot

ChatBot 웹사이트 프로젝트
GNU General Public License v3.0
1 stars 0 forks source link

소셜 로그인 키 #14

Open CutTheWire opened 2 months ago

CutTheWire commented 2 months ago

네이버 클라이언트 ID : rr9TRFLLfTq4_wmMhDKk

클라이언트 시크릿 키 : UUgfpNhlz0

클라이언트에게 제공할 URL 예시 : https://nid.naver.com/oauth2.0/authorize?response_type=code&client_id=rr9TRFLLfTq4_wmMhDKk&redirect_uri=http://treenut.ddns.net&state=STATE_STRING

[https://velog.io/@hwsa1004/SpringSpringBoot-네이버-로그인-API-구현하기-New-Ver](https://velog.io/@hwsa1004/SpringSpringBoot-%EB%84%A4%EC%9D%B4%EB%B2%84-%EB%A1%9C%EA%B7%B8%EC%9D%B8-API-%EA%B5%AC%ED%98%84%ED%95%98%EA%B8%B0-New-Ver)

직접 돌려볼 사람은 풀 해서

[application.properties](http://application.properties/)에 client id 랑 client-secret 에 넣어서 사용하면 됨

plugins {
    id 'java'
    id 'org.springframework.boot' version '3.3.2'
    id 'io.spring.dependency-management' version '1.1.6'
}

group = 'TreeNut'
version = '0.0.1-SNAPSHOT'

java {
    toolchain {
        languageVersion = JavaLanguageVersion.of(22)
    }
}

repositories {
    mavenCentral()
}

dependencies {
    implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
    implementation 'org.springframework.boot:spring-boot-starter-web'
    implementation 'org.springframework.boot:spring-boot-starter-oauth2-client'
    implementation 'io.github.cdimascio:dotenv-java:2.3.0' //로그인 관련 키 빼놓은것 현재 수정중
    testImplementation 'org.springframework.boot:spring-boot-starter-test'
    testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
}

tasks.named('test') {
    useJUnitPlatform()
}