我的本地项目文件夹中有一个图像temp / example.png。我想使用facebook的php sdk在我的facebook时间轴上共享此图像。我发现了这个url 。因此,我形成了如下所示的共享帖子网址字符串:
var $shareUrl=https://www.facebook.com/dialog/share?app_id=xxxxxx&display=popup&href=https://localhost/PhpProject1/temp/example.png&redirect_uri=https://localhost/PhpProject1/success.html';
echo '<a href="'.$shareUrl.'"><button style="width:70%;background-color:#4267B2;color:white;border:none;height:35px;">Share on Facebook</button></a>';
然后我在单击按钮时调用了该url,但是出现“ href应该代表有效的URL”错误。在这里,URL中给出的PhpProject1是我系统上的php项目。我试图解决此问题,但未成功。因此,请帮我解决这个问题。 提前致谢。