我应该使用什么代码来获取 & (不是&)在推文中?

发布于 2024-09-30 07:33:56 字数 596 浏览 0 评论 0原文

我使用 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 技术交流群。

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

发布评论

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

评论(1

寻梦旅人 2024-10-07 07:33:56

您可能需要使用 URL 缩短器,因为 Twitter 可能会采取一些措施来避免 SQL 注入等。

否则,这对你有用吗?

- (NSString *)stringByReplacingPercentEscapesFromString:(NSString *)inString
{
    NSString *outString = (NSString *)CFURLCreateStringByReplacingPercentEscapes(NULL, (CFStringRef)inString, CFSTR(""));
    return [outString autorelease];
}

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?

- (NSString *)stringByReplacingPercentEscapesFromString:(NSString *)inString
{
    NSString *outString = (NSString *)CFURLCreateStringByReplacingPercentEscapes(NULL, (CFStringRef)inString, CFSTR(""));
    return [outString autorelease];
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文