Twitter 在 url 中发布推文
我正在尝试使用 url 在 Flash 片段中使用“推特此页面”功能 格式 ' http://www.twitter.com/home?status=go+to+this+page+http://www.example.com/#/page10'。
Flash 项目具有使用 SWFAddress 的深层链接 url。这要求网址具有井号字符 ( http://www.example.com/#/page10< /a>)。
我似乎无法让它工作,因为 Twitter 误解了井号 (#) 并重定向到另一个 Twitter 帐户。
我尝试过对 url 进行编码,但 Twitter 在将文本放入状态表单之前不会对其进行解码。
作为我最后的手段,我可以创建不带井号的 url,并将它们重定向到 SWFAddress url,但我应该尝试仅从 swf 内解决此问题。
任何人都曾经遇到过同样的问题。我有什么遗漏的吗?
I'm trying to use a 'tweet this page' function in a flash piece using the url
format 'http://www.twitter.com/home?status=go+to+this+page+http://www.example.com/#/page10'.
The flash project has deep-linked urls using SWFAddress. This requires the urls to have the pound character ( http://www.example.com/#/page10 ).
I can't seem to get this to work as Twitter misinterprets the pound sign (#) and redirects to another twitter account.
I've tried encoding the url but twitter doesn't decode it before putting the text into the status form.
As my last resort I could create urls without the pound sign and have them redirect to the SWFAddress urls but I am supposed to try and fix this problem from within the swf only.
Anyone ever have the same issue. Is there something I'm missing??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
删除 www
这是 已知错误不会被修复。
remove the www
It's a known bug that will not going to be fixed.
尝试手动将“#”替换为“%23”
try manually replacing '#' with '%23'