我有一个“Facebook”网页,使用以下功能,在用户填写表格后将行动排到时间表。
function postFoo(){
FB.api(
/me/<?php echo $namespace; ?>:foo?bar=<?php echo $url;?> ,
post ,
function(response) {
if (!response || response.error) {
console.log(response.error);
} else {
console.log( Foo was successful! Action ID: + response.id);
}
});
}
所有这一切都是正确的,而且行动也正确地列入时间表中,但时间表中所含链接的URls,如回到实际地点(例如:),而不是可能预期的面对面表格URL。 我试图将URI改用在纸面上,没有任何uck。
Has anyone else encountered this issue and if there are any resolutions or suggestions I would be very grateful.