Rianshin

카카오로그인 본문

Develop/Front-End

카카오로그인

RianShin 2020. 6. 23. 11:47
728x90
반응형
SMALL

colorscripter.com/s/nYyYmSE

 

공유된 코드 - Color Scripter

저작권자 : boarderrian@gmail.com 코드 설명 : kakao login

colorscripter.com

 

 

if (type === 'kakao') {

        success: function(authObj) {

            console.log(JSON.stringify(authObj, null8))

            Kakao.API.request({

                url: '/v2/user/me',

                success: function(res) {

                    res.sns_type = "kakao";

                    res.email = res.kakao_account.email;

                    console.log(JSON.stringify(res, null8))

                },

                fail: function(res) {

                    console.log(JSON.stringify(res, null8))

                }

            })

        },

        fail: function(err) {

            console.log(JSON.stringify(err));

        },

        throughTalk: false

    });

728x90
반응형
LIST

'Develop > Front-End' 카테고리의 다른 글

[Front-End]window.open in Safari  (0) 2020.09.28
[FB]페이스북 로그인  (0) 2020.06.23
Facebook 로그인 연동 error  (0) 2020.05.06
Digging into Angular’s “Controller as” syntax by Todd Motto  (0) 2016.08.05
Cordova  (0) 2016.08.05
Comments