iOs - 不使用 UIWebView 发送状态

发布于 2025-01-01 06:32:03 字数 104 浏览 0 评论 0原文

在iOS SDK中,有没有一种方法可以在不打开UIWebView的情况下发送状态? 也许是带有帖子正文的网址, 我真的需要一种无需 uiwebview 表单即可发送的方法。

谢谢

In SDK for iOS, there is a way to send a status without open UIWebView?
Maybe a url with post body,
I really need a way to send without uiwebview form.

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

讽刺将军 2025-01-08 06:32:03

如果您想在 Facebook 上这样做:

NSMutableDictionary *params = [[NSMutableDictionary alloc] init];
[params setObject:facebookClient.accessToken forKey:@"access_token"];
[params setObject:@"New status" forKey:@"message"];
[facebookClient requestWithGraphPath:@"/me/feed" andParams:params andHttpMethod:@"POST" andDelegate:self];
[params release];

If you're looking for doing it regarding Facebook:

NSMutableDictionary *params = [[NSMutableDictionary alloc] init];
[params setObject:facebookClient.accessToken forKey:@"access_token"];
[params setObject:@"New status" forKey:@"message"];
[facebookClient requestWithGraphPath:@"/me/feed" andParams:params andHttpMethod:@"POST" andDelegate:self];
[params release];
心病无药医 2025-01-08 06:32:03

您自己说过 - 只需使用 NSURLConnection POST 表单将数据发送到服务器上的脚本,即

        NSString *formContent = [NSString stringWithFormat:@"name=%@", someName];
        NSURL* url = [NSURL URLWithString:@"http://myserver.com/submit.php"];
        NSMutableURLRequest* urlRequest = [[NSMutableURLRequest alloc] initWithURL:url];
        [urlRequest setHTTPMethod:@"POST"];
        [urlRequest setHTTPBody:[formContent dataUsingEncoding:NSUTF8StringEncoding]];

        [NSURLConnection sendAsynchronousRequest:urlRequest 
                                           queue:[NSOperationQueue mainQueue]
                               completionHandler:^(NSURLResponse *response, NSData *data, NSError *error) {
                                   NSLog(@"%@", [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding]); //script return
                               }];

You said it yourself- just use an NSURLConnection POST form to send data to a script on your server, i.e.

        NSString *formContent = [NSString stringWithFormat:@"name=%@", someName];
        NSURL* url = [NSURL URLWithString:@"http://myserver.com/submit.php"];
        NSMutableURLRequest* urlRequest = [[NSMutableURLRequest alloc] initWithURL:url];
        [urlRequest setHTTPMethod:@"POST"];
        [urlRequest setHTTPBody:[formContent dataUsingEncoding:NSUTF8StringEncoding]];

        [NSURLConnection sendAsynchronousRequest:urlRequest 
                                           queue:[NSOperationQueue mainQueue]
                               completionHandler:^(NSURLResponse *response, NSData *data, NSError *error) {
                                   NSLog(@"%@", [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding]); //script return
                               }];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文