我有一个带有地址的粉丝页面。 另外,我可以使用facebook API获取位置详细信息。
但是,要使用review button
创建新帖子,我需要位置ID而不是详细信息。
我使用以下行创建share button
:
var data = {
message: 'Hi !',
place: location_id
};
FB.api('/me/feed', 'post', data, function(response) {
if (!response || response.error) {
console.error(response.error);
} else {
console.log(response.id);
}
});
如果我使用特定的位置ID,它会起作用。但我无法从特定页面获取位置ID。
请给我一些想法。谢谢!
答案 0 :(得分:0)
我睡着了,但我有一个想法。
最后,这个想法就是解决方案:
可以直接在场所参数中使用粉丝页面ID。它可以像地方ID一样使用。