我正在努力獲得api時,在應用程序中的api我沒有得到更新的響應當我從模擬器和設備中刪除應用程序它的工作fine.guys我做錯了請幫助我。我已經嘗試了Afnetworking簡單的Api nsurl會話。獲取Api不能正常工作
NSString *strURL = [NSString stringWithFormat:@"https://mysponsers.com/m/comments/publicpost/674"];
NSURL *url = [NSURL URLWithString:strURL];
AFHTTPClient *httpClient = [[AFHTTPClient alloc]initWithBaseURL:url];
[httpClient getPath:strURL parameters:nil success:^(AFHTTPRequestOperation *operation, id responseObject) {
id json = [NSJSONSerialization JSONObjectWithData:responseObject options:kNilOptions error:nil];
NSLog(@"RESPONSE--->1%@",json);
} failure:^(AFHTTPRequestOperation* operation, NSError *error) {
//fail!
NSLog(@"Error String is %@", error.localizedDescription);
}];
這裏是我使用afnetworkikng擊打api的代碼。
謝謝
dont tag swift for objC questions –
發生了什麼事? – shallowThought
您正在使用哪種版本的AFNetworking? –