使用主题标签预先填充 Twitter 状态

发布于 2024-09-06 16:17:06 字数 496 浏览 2 评论 0原文

您可以通过执行以下操作来预先填充推文: twitter.com/home?status=我在 stackoverflow 上问一个问题

如果你想使用主题标签,你必须对其进行 urlencode http://twitter.com/home?status=I 在 %23stackoverflow 上提问

如果用户还没有登录 Twitter 后,一旦登录,他们就会因为这些主题标签而被重定向到 404。我确信这是因为 Twitter 必须在您登录时保存/传递此状态查询字符串。

有人有建议吗?在这种情况下,主题标签对我来说很重要。

You can pre-populate a tweet by doing something like:
twitter.com/home?status=I am asking a question on stackoverflow

If you want to use a hashtag you have to urlencode it
http://twitter.com/home?status=I am asking a question on %23stackoverflow

If the user is not already logged into twitter, once they do log in, they are redirected to a 404 because of these hashtags. I am sure its because twitter has to save/pass through this status query string while you log in.

Any one have suggestions? A hashtag is important to me in this situation.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

玻璃人 2024-09-13 16:17:06

PHP 的 rawurlencode 或您选择的语言的类似函数应该可以解决这个问题:

echo rawurlencode('I am asking a  question on #stackoverflow :-)');
// I%20am%20asking%20a%20%20question%20on%20%23stackoverflow%20%3A-%29

为我工作。

PHP's rawurlencode or a similar function of your language of choice should fix that:

echo rawurlencode('I am asking a  question on #stackoverflow :-)');
// I%20am%20asking%20a%20%20question%20on%20%23stackoverflow%20%3A-%29

Worked for me.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文