我是编程新手,尤其是在网络方面。所以现在我正在创建应用程序来与 Instagram 进行交互。在我的项目中,我使用 AFNetworking。我在这里看到了他们的文档和许多示例。而且我还不明白如何获得对 Instagram API 的 POST 请求。请你能给我真实的代码示例或我可以阅读有关如何执行此操作的内容吗?请帮忙。我试图提出这样的请求,它没有错误也没有响应。它什么也没给:(
(IBAction)doRequest:(id)sender{
NSURL *baseURL = [NSURL URLWithString:@"http://api.instagram.com/"];
AFHTTPClient *httpClient = [[AFHTTPClient alloc] initWithBaseURL:baseURL];
[httpClient defaultValueForHeader:@"Accept"];
NSDictionary *params = [NSDictionary dictionaryWithObjectsAndKeys:
user_token, @"access_token",
nil];
[httpClient postPath:@"/feed" parameters:params success:^(AFHTTPRequestOperation *operation, id responseObject) {
// reponseObject will hold the data returned by the server.
NSLog(@"data: %@", responseObject);
}failure:^(AFHTTPRequestOperation *operation, NSError *error) {
NSLog(@"Error retrieving data: %@", error);
}];
NSLog(@"click!!");
}