我正在制作一个单页网站,我需要在上面放置不同的内置喜欢,但每个喜欢都会从主页获得 og 标签。
我怎样才能将这个参数传递给我的 POST?就像是:
FB.api(
'https://graph.facebook.com/me/og.likes',
'post',
{
'object': 'http://www.example.com',
'access_token': token,
**'Title' : 'The Title'**,
**'Description' : 'The Description'**
},
function(response) {
if (!response || response.error) {
console.log(response.error);
} else {
}
};
);