gpt4 book ai didi

ios - 如何在 iOS 中发布数据?

转载 作者:行者123 更新时间:2023-11-28 20:07:16 27 4
gpt4 key购买 nike

我正在做一个 Instagram 应用程序。因为我需要在图像上发布。我无法发帖。我正在关注 instgram API。我们需要使用以下网址

https://api.instagram.com/v1/media/{media-id}/likes

我们需要像这样设置媒体ID

https://api.instagram.com/v1/media/649114513807113248_1032025382/likes

media id = 649114513807113248_1032025382

我要发布的代码:

NSString *urlString = [NSString            stringWithFormat:@"https://api.instagram.com/v1/media/649114513807113248_1032025382/likes"];

NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:urlString]
cachePolicy:NSURLRequestUseProtocolCachePolicy
timeoutInterval:60.0];


[request setHTTPMethod:@"POST"];
NSURLConnection *connection= [[NSURLConnection alloc] initWithRequest:request
delegate:self];
[connection start];

但是点赞不是发帖。谁能帮我 ?

最佳答案

您可以使用 AFNetworking 框架以更好的方式发布数据。 github 上也提供了示例。

http://afnetworking.com/

关于ios - 如何在 iOS 中发布数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21670652/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com