搜索

首页  >  问答  >  正文

未找到通过 Twitter 分享的结果(仅在移动设备上分享):错误

我有一个简单的 Facebo ok、Twitter 和 Pinterest 分享按钮

<a href="<?php echo "$base_url/share.php"; ?>" class="btn btn-default btn-face book btn-icon btn-block" target="popup" 
onclick="window.open('<?php echo "$base_url/share.php?id=$id&share=fb&type=article"; ?>','popup','width =600,height=600'); return false;"><i class="fab fa-face book"></i> <span class="post-sharing__label d-none d-sm-inline-block">Share on Face book</span></a>

<a href="<?php echo "$base_url/share.php"; ?>" class="btn btn-default btn-twitter btn-icon btn-block" target="popup" 
onclick="window.open('<?php echo "$base_url/share.php?id=$id&share=tw&type=article"; ?>','popup','width=600,height=600'); return false;"><i class="fab fa-twitter"></i> <span class="post-sharing__label d-none d-sm-inline-block">Share on Twitter</span></a>

<a href="<?php echo "$base_url/share.php"; ?>" class="btn btn-default btn-twitter btn-icon btn-block" target="popup" 
onclick="window.open('<?php echo "$base_url/share.php?id=$id&share=tw&type=article"; ?>','popup','width=600,height=600'); return false;"><i class="fab fa-twitter"></i> <span class="post-sharing__label d-none d-sm-inline-block">Share on Twitter</span></a>

当用户单击共享时,它会转到名为 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 帐户与我在电脑上登录的帐户相同。

我从这个问题中得到了我的网址的信息

P粉486743671P粉486743671397 天前513

全部回复(1)我来回复

  • P粉770375450

    P粉7703754502023-12-08 00:12:03

    我通过更改链接在移动设备上运行了此功能

    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();
    }

    回复
    0
  • 取消回复