Skip to content

Instantly share code, notes, and snippets.

@nguyenvanduocit
Created May 27, 2013 20:43
Show Gist options
  • Save nguyenvanduocit/5658979 to your computer and use it in GitHub Desktop.
Save nguyenvanduocit/5658979 to your computer and use it in GitHub Desktop.
Post facebook
function postWall(results){
var result=results.split(",");
var publish = {
method: 'feed',
message: 'Thử xem chu kỳ sinh học ngày hôm nay của bạn như thế nào đi',
name: 'Chu kỳ trí tuệ của mình là '+result[2]+'% đó nha',
caption: 'Khoa học đã chứng minh',
description: (
'Chu kỳ sinh học có tác động đến cuộc sống mỗi người, nếu nắm được quy luật này, biết được mình đang ở vị trí nào trong chu kỳ, bạn có thể chủ động hơn trong cuộc sống của mình.'
),
link: 'http://apps.facebook.com/boi-tinh-yeu',
picture: 'http://nf6.upanh.com/b2.s11.d3/fc2492571a2d1b58015a1cb9619c8557_37764606.truongdinhiattachments4293345629.jpg',
actions: [{name: 'Mùa tóc rối', link: 'http://muatocroi.com'}],
media:[{"type":"image","src":"http://example.com/imgs/skills.png","href":"http://example.com/"}],
properties:{
"Năng lượng":{"text":result[0]+'%',"href":"http://muatocroi.com/category/bai-hoc-cuoc-song/"},
"Tình cảm":{"text":result[1]+'%',"href":"http://muatocroi.com/category/bai-hoc-cuoc-song/truyen-ngan-cuoc-song/"},
"Trí tuệ":{"text":result[2]+'%',"href":"http://muatocroi.com/category/bai-hoc-tinh-yeu/"},
"Trực giác":{"text":result[3]+'%',"href":"http://muatocroi.com/category/bai-hoc-tinh-yeu/truyen-ngan-tinh-yeu/"},
"Thẩm mỹ":{"text":result[4]+'%',"href":"http://muatocroi.com/fhmily/"},
"Tâm linh":{"text":result[5]+'%',"href":"http://muatocroi.com/ung-dung-sms/hinh-nen-dien-thoai/"}
},
user_message_prompt: 'Bí mật về chu kỳ sinh học của bạn'
};
FB.ui(publish,
function(response) {
if (response && response.post_id) {
alert('Đăng lên tường thành công !');
}
else
{
alert('Tại sao bạn lại không cho mọi người biết nhỉ');
}
}
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment