使用主题标签预先填充 Twitter 状态
您可以通过执行以下操作来预先填充推文: 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
PHP 的 rawurlencode 或您选择的语言的类似函数应该可以解决这个问题:
为我工作。
PHP's rawurlencode or a similar function of your language of choice should fix that:
Worked for me.
这是 Twitter API 中的一个错误,现已修复。
It was a bug in Twitter's API that has been fixed.