티스토리 뷰
https://developers.facebook.com/docs/facebook-login
앱이나 웹사이트에 Facebook 로그인 추가
https://developers.facebook.com/docs/facebook-login/web 에서 맨 마지막에 있는 코드를 따라해도 됩니다. (잘 모르겠다면....)
중요한 권한 추가하기.... email을 가져오기 위해선 혹은 기타 다른 사용자 정보를 가져오기 위해서는 아래와 같이 ~을 가져오겠다고 선언을 하고 넘어가야 합니다.
FB.login(function(response) { console.log(response); }, {scope: 'email'});
정보를 하나씩 빼오는 방법을 잘 몰라서 아래처럼 뽑았는데
다른분들은 어떻게 했는지 궁금하다
<script type="text/javascript">
window.fbAsyncInit = function() {
FB.init({
appId : '키입력',
xfbml : true,
version : 'v2.9'
});
FB.AppEvents.logPageView();
FB.getLoginStatus(function(response) {
if (response.status === 'connected') {
}
else {
FB.login(function(response) {
// handle the response
}, {scope: 'public_profile, email, user_birthday '});
}
});
};
(function(d, s, id){
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) {return;}
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_US/sdk.js";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
function checkLoginState() {
FB.getLoginStatus(function(response) {
statusChangeCallback(response);
});
}
function statusChangeCallback(response) {
if (response.status === 'connected') {
testAPI();
} else {
document.getElementById('status').innerHTML = 'Please log into this app.';
}
}
function testAPI() {
FB.api('/me', function(response) {
console.log(response.id);
console.log(response.name);
});
FB.api('/me/picture?type=large',function(response){
console.log(response.data.url);
});
FB.api('/me', {fields: 'email'}, function(response) {
console.log(response.email);
});
FB.api('/me', {fields: 'age_range '}, function(response) {
console.log(response.age_range );
});
FB.api('/me', {fields: 'gender '}, function(response) {
console.log(response.gender );
});
FB.api('/me', {fields: 'locale '}, function(response) {
console.log(response.locale );
});
}
</script>
<fb:login-button scope="public_profile,email" onlogin="checkLoginState();">
</fb:login-button>
'API > Facebook 페이스북' 카테고리의 다른 글
공유하기 (0) | 2017.07.21 |
---|---|
로그인 하기 (login) (0) | 2017.07.21 |
로그인 후 가져올 수 있는 정보 (0) | 2017.07.21 |
반응형
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- Apach
- 성수뚝떡
- Mac
- floating button
- 위잇딜라이트
- 토라식당
- jstree
- html
- 성수밥
- 터미널
- Eclipse
- 르프리크
- 이클립스
- server.xml
- tree로만들기
- Oracle
- Tomcat
- 힘냉면록
- 톰캣
- 맥
- 메뉴관리
- input
- 조직도관리
- node관리
- 최고심
- SQL
- 아파치
- Lalavel
- 정규식
- 오라클
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함