-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkakln.html
More file actions
69 lines (59 loc) · 2.16 KB
/
kakln.html
File metadata and controls
69 lines (59 loc) · 2.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html>
<head>
<title>kakao login</title>
<meta charset="UTF-8">
<meta name="kakao login" content="This is a kakao login example.">
</head>
<body>
<a href="javascript:kakaoLogin();"><img src="abcdef.jpg" style="height: 60px; width: auto"></a>
<script src="https://developers.kakao.com/sdk/js/kakao.js"></script>
<script>
window.kakao.init("7731f4205e...");
function kakaoLogin() {
window.kakao.Auth.logi({
scope: 'profile, account_email, gender'
success: function(authObj) {
console.log(authObj);
window.kakao.API.request({
url:'/v2/user/me',
success: res => {
const kakao_account = res.kakao_account;
console.log(kakao_account);
}
});
}
});
}
</script>
</body>
<!DOCTYPE html>
<html>
<head>
<title>kakao login</title>
<meta charset="UTF-8">
<meta name="kakao login" content="This is a kakao login example.">
</head>
<body>
<a href="javascript:kakaoLogin();"><img src="abcdef.jpg" style="height: 60px; width: auto"></a>
<script src="https://developers.kakao.com/sdk/js/kakao.js"></script>
<script>
window.kakao.init("7731f4205e...");
function kakaoLogin() {
window.kakao.Auth.logi({
scope: 'profile, account_email, gender'
success: function(authObj) {
console.log(authObj);
window.kakao.API.request({
url:'/v2/user/me',
success: res => {
const kakao_account = res.kakao_account;
console.log(kakao_account);
}
});
}
});
}
</script>
</body>
</html>