我应该使用什么代码来获取 & (不是&)在推文中?
我使用 Twitter-OAuth-iPhone 通过 [_engine sendUpdate:myText 发布推文];
,效果很好。但是,“myText”中的字母 &
将更改为 Twitter.com 上显示的推文中的 &
。 &
用于坐标链接:@"http://maps.google.co.uk/maps?f=q&source=s_q&hl=en&geocode=& q=%f,+%f"
。
我尝试将“myText”中的 &
替换为 %%26
,结果推文中的 %26
而不是 <代码>&;当我替换为 %26
时,应用程序崩溃了。
我应该使用什么代码来获取推文中的 &
(不是 &
)?
I use Twitter-OAuth-iPhone to POST tweets by [_engine sendUpdate:myText];
, which works fine. However, the letter &
in the 'myText' will be changed to &
in the tweet shown on Twitter.com. The &
is for coordinates link: @"http://maps.google.co.uk/maps?f=q&source=s_q&hl=en&geocode=&q=%f,+%f"
.
I tried to replace the &
with %%26
in the 'myText', which turns out with %26
in the tweet instead of &
; and when I replace with %26
, the app crash.
What code should I use to get &
(not &
) in the tweet?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能需要使用 URL 缩短器,因为 Twitter 可能会采取一些措施来避免 SQL 注入等。
否则,这对你有用吗?
You may need to use a URL shortener, since Twitter may be doing something to avoid SQL injection and the like.
Otherwise, does this work for you?