로그인 성공 정리필요

This commit is contained in:
root
2025-07-25 16:25:07 +09:00
parent 7e795083e5
commit 3552ad4c51

View File

@@ -10,15 +10,15 @@ const LoginForm = () => {
const [id, setId] = useState('') //ID
const [pw, setPw] = useState('') //PW
const [params, setParams] = useState({
id:'',
pw:''
id: '',
pw: ''
})
const requestUrl = 'https://kauth.kakao.com/oauth/authorize'
const requestUrl = 'https://kauth.kakao.com/oauth/authorize?client_id=a1d6afef2d4508a10a498b7069f67496&redirect_uri=http://localhost:8080/login/oauth-kakao&response_type=code'
const login = () => {
axios.get(requestUrl, {
headers : {
"client_id":"a1d6afef2d4508a10a498b7069f67496",
headers: {
"client_id": "a1d6afef2d4508a10a498b7069f67496",
}
}).then((res) => {
console.log(requestUrl + "===>")
@@ -31,10 +31,10 @@ const LoginForm = () => {
return (
<>
<Link href={'https://kauth.kakao.com/oauth/authorize'}>
<button type="button">
<img src={loginButton.src} alt="카카오톡 로그인"/>
</button>
<Link href={requestUrl}>
<button type="button">
<img src={loginButton.src} alt="카카오톡 로그인" />
</button>
</Link>
</>
)