我有一个简单的 Facebo ok、Twitter 和 Pinterest 分享按钮
" class="btn btn-default btn-face book btn-icon btn-block" target="popup" onclick="window.open('','popup','width =600,height=600'); return false;"> Share on Face book " class="btn btn-default btn-twitter btn-icon btn-block" target="popup" onclick="window.open('','popup','width=600,height=600'); return false;"> Share on Twitter " class="btn btn-default btn-twitter btn-icon btn-block" target="popup" onclick="window.open('','popup','width=600,height=600'); return false;"> Share on Twitter
当用户单击共享时,它会转到名为 share.php 的 php 文件;该文件获取有关将要共享的页面的信息。
if ($share =="tw"){
header("Location: http://twitter.com/share?text=$seo_description&url=$share_url");
die();
}
在桌面上,它可以正常工作,但在移动设备上,我收到以下错误
The terms you entered did not bring any results, please try again later.
Facebo k 和 Pinterest 在移动设备上运行,我正在苦苦思索为什么我会得到这个。
我在手机上登录的 Twitter 帐户与我在电脑上登录的帐户相同。
我从这个问题中得到了我的网址的信息
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
我通过更改链接在移动设备上运行了此功能
if ($share =="tw"){ header("Location: http://twitter.com/share?text=$seo_description&url=$share_url"); die(); }到此
if ($share =="tw"){ header("Location: https://twitter.com/intent/tweet?text=$seo_description&url=$share_url"); die(); }