我想在 iPhone 中以编程方式将 URl 转换为 TinyURL。这个怎么做?
问问题
2723 次
3 回答
5
Tiny URL 有一个简单的 API 可以使用,非常简单
只需使用您的 URL 发送此请求
http://tinyurl.com/api-create.php?url=http://yourURL.com/
它将返回一个带有您的链接的小 URL
编辑:这是一个工作示例,虽然这是一个同步请求,但如果需要太长时间,它可能会使您的应用程序无响应。
NSString *origUrl = @"http://stackoverflow.com";
NSURL *url = [NSURL URLWithString:[NSString stringWithFormat:@"http://tinyurl.com/api-create.php?url=%@", origUrl]];
NSURLRequest *request = [ NSURLRequest requestWithURL:url
cachePolicy:NSURLRequestReloadIgnoringCacheData
timeoutInterval:10.0 ];
NSError *error;
NSURLResponse *response;
NSData *myUrlData = [ NSURLConnection sendSynchronousRequest:request
returningResponse:&response
error:&error];
NSString *myTinyUrl = [[NSString alloc] initWithData:myUrlData encoding:NSUTF8StringEncoding];
//do stuff with url
[myTinyUrl release];
于 2011-04-19T12:55:14.177 回答
3
这可能会有所帮助:tiny url api
于 2011-04-19T12:59:13.657 回答
0
更容易并且在 ios7 中工作
NSError *error
NSString *tinyURL = [NSString stringWithContentsOfURL:[NSURL URLWithString:[NSString stringWithFormat:@"http://tinyurl.com/api-create.php?url=%@", YOUR-URL]]
encoding:NSASCIIStringEncoding error:&error];
// error handling here..
于 2013-12-20T17:41:53.437 回答