我正在尝试使用Graph API中的embed_html,但调用没有使用return_ssl_results = 1返回SSL,是否需要返回ssl的嵌入代码?
答案 0 :(得分:1)
尝试{}在添加到对象之前重写源的URL。这对我很有用。
if($fvalue[source]){
$reWrite = array("autoplay=1" => "autoplay=0", "http://" => "https://");
$getEmbed = $fvalue[source];
$strAuto = strtr($getEmbed, $reWrite);
echo '<object style="float:left; clear:left; margin: 5px;"><param name="autostart" value="0"><embed autostart="false" src="'.$strAuto.'"></embed></object>';
}