SNS 공유하기

페이스북 공유

콜백이 필요 없다면

1
<a href="http://www.facebook.com/sharer/sharer.php?u=domain.com" target="_blank">페이스북 공유</a>

콜백이 필요하다면

페이스북 앱 아이디가 필요한것 같다.

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
$('#snsFb').on('click', function(e){

e.preventDefault();

$.ajaxSetup({ cache: true });

$.getScript('//connect.facebook.net/ko_KR/sdk.js', function(){

FB.init({
appId:'your facebook app id',
version: 'v3.2'
});
FB.ui({
method: 'share',
title: '공유 테스트',
description: '공유 테스트를 진행',
href: 'https://daum.net'
}, function(response){
if(response && !response.error_code) {
alert('공유 완료');
} else {
alert('공유 실패');
}
})

});

});