2011/12/23 11:59
유인나 손호영 1년째 아름다운 만남 분류없음2011/12/23 11:59
지인의 소개로 만난 두사람 서로의 모습에 호감을 가지게 되고 교제를 하고 있다고 합니다.
잘 어울리는 커플이 될것 같습니다.
서로 모난부분도 많이 없고 ... 좋은 만남 계속 지속되면 좋겠네요.
| 트위터 자동 포스팅하기 (0) | 2011/10/20 |
|---|---|
| 페이스북 Graph API를 사용하는 웹어플 만들기 (0) | 2011/10/20 |
| [페이스북]FB.api 사용 (0) | 2011/09/27 |
| 페이스북 로그인 (0) | 2011/09/26 |
| [PHP]Facebook에서 데이터 가져오기 (0) | 2011/09/26 |
| 페이스북 API (0) | 2011/08/29 |
http://developers.facebook.com/setup/
https://developers.facebook.com/apps
https://graph.facebook.com/(객체의 ID)
https://graph.facebook.com/ndongwoo
{
"id": "100000786878603",
"name": "Dongwoo Nam",
"first_name": "Dongwoo",
"last_name": "Nam",
"link": "http://www.facebook.com/ndongwoo",
"username": "ndongwoo",
"gender": "male",
"locale": "ko_KR"
}
https://graph.facebook.com/100000786878603
https://graph.facebook.com/(객체의 ID)/(객체의 연결 이름)
https://graph.facebook.com/ndongwoo/friends
https://www.facebook.com/dialog/oauth?client_id=(앱 ID)&redirect_uri=(임시 열쇠를 받기로 한 웹주소)&scope=(웹어플이 필요로 하는 권한들)
https://graph.facebook.com/oauth/access_token?client_id=(앱 ID)&client_secret=(앱의 시크릿 코드)&redirect_uri=(임시 열쇠를 발급받을 때에 사용한 웹주소)&code=(방금 전달받은 임시 열쇠)
https://graph.facebook.com/ndongwoo
https://graph.facebook.com/ndongwoo?access_token=...
https://graph.facebook.com/?ids=ndongwoo,facebook
{
"ndongwoo": {
"id": "100000786878603",
"name": "Dongwoo Nam",
"first_name": "Dongwoo",
"last_name": "Nam",
"link": "http://www.facebook.com/ndongwoo",
"username": "ndongwoo",
"gender": "male",
"locale": "ko_KR"
},
"facebook": {
"id": "20531316728",
"name": "Facebook",
"picture": "http://profile.ak.fbcdn.net/hprofile-ak-snc4/174597_20531316728_2866555_s.jpg",
"link": "http://www.facebook.com/facebook",
"likes": 48841836,
"category": "Product/service",
"website": "http://www.facebook.com/\n",
"username": "facebook",
"founded": "February 4, 2004",
"company_overview": "…(생략)",
"mission": "Facebook's mission is to give people the power to share and make the world more open and connected."
}
}
https://graph.facebook.com/ndongwoo?fields=id,last_name
{
"id": "100000786878603",
"last_name": "Nam"
}
https://graph.facebook.com/search?q=(검색할 문자열)&type=(검색 대상 객체의 종류)
https://graph.facebook.com/(권한을 허용한 사용자 ID)/feed
https://graph.facebook.com/ndongwoo/feed
https://graph.facebook.com/(댓글을 등록할 글의 ID)/comments
https://graph.facebook.com/(좋아요를 할 객체의 ID)/likes
| 트위터 자동 포스팅하기 (0) | 2011/10/20 |
|---|---|
| 페이스북 Graph API를 사용하는 웹어플 만들기 (0) | 2011/10/20 |
| [페이스북]FB.api 사용 (0) | 2011/09/27 |
| 페이스북 로그인 (0) | 2011/09/26 |
| [PHP]Facebook에서 데이터 가져오기 (0) | 2011/09/26 |
| 페이스북 API (0) | 2011/08/29 |