2011. 8. 23. 08:09 웹전반(표준)
twitter, facebook, me2day 글 보내기
최근에 트위트 관련 API 가 변경된거 같다.
[참고] http://nsinc.tistory.com/59
var href = "https://twitter.com/intent/tweet?text="+encodeURIComponent(msg)+"&lang=ko&url="+encodeURIComponent(url);
이렇게 해 줘야 한다. ㅋ.ㅋ
if (sns == "twitter"){
//sns_ts.location.href = "/twitter/redirect.php?s=d&title="+title+"&message="+message;
//window.open("/twitter/redirect.php?t=d&title="+title+"&message="+message+"","twitter");
window.open('',"twitterpop");
document.SNSGO.t.value = "d";
//document.SNSGO.title.value = title;
document.SNSGO.message.value = message;
document.SNSGO.action = "/twitter/redirect.php";
document.SNSGO.target = "twitterpop";
document.SNSGO.submit();
}else if (sns == "facebook"){
//window.open("/facebook/index.php?f=d&title="+title+"&message="+message+"","facebook");
window.open('',"facebookpop");
document.SNSGO.f.value = "d";
document.SNSGO.title.value = title;
document.SNSGO.message.value = message;
document.SNSGO.action = "/facebook/index.php";
document.SNSGO.target = "facebookpop";
document.SNSGO.submit();
}else if (sns == "me2day"){
//window.open("/me2day/php/index.php?s=d&title="+title+"&message="+message+"","me2day");
window.open('',"me2daypop");
document.SNSGO.s.value = "d";
document.SNSGO.title.value = title;
document.SNSGO.message.value = message;
document.SNSGO.action = "/me2day/php/index.php";
document.SNSGO.target = "me2daypop";
document.SNSGO.submit();
}
/*
1. sns 는 twitter , facebook , me2day
2. menu
loveletter
concert
story
menu에 따라서 등록 글이 다릅니다. 아래 참조 해주세요.
3. url 는 도메인/index.html+url
아래 링크 항목에 적용
[참고] http://nsinc.tistory.com/59
var href = "https://twitter.com/intent/tweet?text="+encodeURIComponent(msg)+"&lang=ko&url="+encodeURIComponent(url);
이렇게 해 줘야 한다. ㅋ.ㅋ
if (sns == "twitter"){
//sns_ts.location.href = "/twitter/redirect.php?s=d&title="+title+"&message="+message;
//window.open("/twitter/redirect.php?t=d&title="+title+"&message="+message+"","twitter");
window.open('',"twitterpop");
document.SNSGO.t.value = "d";
//document.SNSGO.title.value = title;
document.SNSGO.message.value = message;
document.SNSGO.action = "/twitter/redirect.php";
document.SNSGO.target = "twitterpop";
document.SNSGO.submit();
}else if (sns == "facebook"){
//window.open("/facebook/index.php?f=d&title="+title+"&message="+message+"","facebook");
window.open('',"facebookpop");
document.SNSGO.f.value = "d";
document.SNSGO.title.value = title;
document.SNSGO.message.value = message;
document.SNSGO.action = "/facebook/index.php";
document.SNSGO.target = "facebookpop";
document.SNSGO.submit();
}else if (sns == "me2day"){
//window.open("/me2day/php/index.php?s=d&title="+title+"&message="+message+"","me2day");
window.open('',"me2daypop");
document.SNSGO.s.value = "d";
document.SNSGO.title.value = title;
document.SNSGO.message.value = message;
document.SNSGO.action = "/me2day/php/index.php";
document.SNSGO.target = "me2daypop";
document.SNSGO.submit();
}
/*
1. sns 는 twitter , facebook , me2day
2. menu
loveletter
concert
story
menu에 따라서 등록 글이 다릅니다. 아래 참조 해주세요.
3. url 는 도메인/index.html+url
아래 링크 항목에 적용
'웹전반(표준)' 카테고리의 다른 글
검색엔진 최적화(SEO) 요소 (0) | 2011.12.12 |
---|---|
javascript를 이용한 form 암호화 (0) | 2011.10.11 |
모바일 웹에서 Facebook 에 게시물 올리기 (0) | 2011.10.07 |
[링크] 웹 어플리케이션 보안에서 3가지 중요사항 (0) | 2011.09.20 |
HTML5 로 만든 일본의 사이트들 (0) | 2011.09.01 |