【发布时间】:2014-01-05 10:39:06
【问题描述】:
我可以使用 url 重定向向 Facebook 朋友发送消息,但现在我想在消息中附加图像。我试图在 url 上包含一张图片,但没有任何反应。
如果你知道如何完成这项工作,请帮助我。
我已成功发送消息,但图像与消息不相符,我在 recipent 收件箱中收到此错误
错误:This attachment may have been removed or the person who shared it may not have permission to share it with you.
这是我使用的代码
<?php
if(isset($_GET['receiverid']))
{
$fbfid=$_GET['receiverid'];
header("location:https://www.facebook.com/dialog/send?
picture=http://www.educaptain.com/myecard.gif&
message=jesus isgood&
app_id=788167814543458&
link=http://www.educaptain.com&redirect_uri=http://educaptain.com/egreetings-world/&
to=$fbfid");
}
?>
【问题讨论】: