Tagged Questions
0
votes
1answer
14 views
Using AFNetworking to GET public files from S3 and receive 403
I am trying to download PDF files from our S3 storage. The files are public, and can be accessed through a browser.
When using AFNetworking I receive a 403. The code looks like this
AFHTTPClient ...
0
votes
1answer
22 views
Afnetworking call doesn't seem to be execute
In my applications appdelegate, I am making an api call using afnetworking just to test things out, and I don't see anything in the logs.
Not sure why it isn't working:
- ...
0
votes
1answer
37 views
AFNetworking encodes POST parameter in JSON?
I have the following code:
APIClient *client = [APIClient sharedManager];
NSMutableURLRequest *request = [client requestWithMethod:@"POST"
...
1
vote
1answer
14 views
Lazy Loading User Image UITableView - Updating the Image in Request Block not Working
So I am trying to lazyload a user pictures for a custom UITableView (BubbleTableView)
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url];
[request ...
0
votes
1answer
23 views
Is this the best way to manage authentication? [closed]
Intro: I currently have two views (the main view & login view). The app always starts on the main view.
Main View: Displays html data that I collect once authenticated with the site.
Login View: ...
0
votes
0answers
16 views
iOS: Better way to authenticate and scrape data?
I'm currently pulling in user data from a site where the user must authenticate before reaching the page where the data exists. I've managed to do so by using a combination of javascript injection ...
0
votes
1answer
38 views
AFNetworking setImageWithURLRequest reverting to placeholder when scrolled past
I am making a simple reddit app for a school project. I am loading my
data from reddit via json (http://www.reddit.com/.json for example) with AFNetworking library.
I am displaying each reddit thread ...
1
vote
0answers
22 views
iOS: Alternate way to return to app from Safari other than custom protocol
I am using AFOAuth1Client to authenticate with a provider (they use DotNetOpenAuth). Unfortunately the provider doesn't like a custom URL protocol such as myapp://success for the callback URL as it ...
0
votes
0answers
23 views
Manage enqueueBatchOfHTTPRequestOperationsWithRequests AFHTTPClient subclass
I want to implement multiple Json requests from a web service with AFNetworking and this AFHTTPClient subclass to create a table View. I will create the tableView in MainViewController.
#import ...
0
votes
0answers
15 views
AFNetworking - Request method as a parameter
I'm seeing in AFHTTPClient documentation these pretty tasks for Making HTTP Requests:
- getPath:parameters:success:failure:
- postPath:parameters:success:failure:
- ...
0
votes
3answers
44 views
Multiple async request to create a dynamic table view in objective c
I am developing a new iOS app. In this app, I have a slide menu. I want to create this menu dynamically with async requests. It's a kind of new LinkedIn menu like this one :
Linkedin Menu
This menu ...
0
votes
3answers
70 views
Images appear after scrolling table view (AFNetworking)
I am using AFNetworking to download images from server , everything works fine but images wont't be appear unless I scroll table view . here is my code :
- (UITableViewCell ...
0
votes
0answers
7 views
iOS OAuth client that works with DotNetOpenAuth
I have an API that I need to connect to that does OAuth using DotNetOpenAuth. But, it seems every OAuth client I have tried doesn't work with DotNetOpenAuth.
Tried AFOAuth1Client, GTMOAuth and Simple ...
0
votes
0answers
27 views
Downloading/Reading PDF on UICollectionViewCell Tap
I'm building a simple news app that will eventually download PDFs when the user taps a cell in UICollectionView. If the file already exists, I just want the PDF to open for reading. As of now, the ...
1
vote
3answers
35 views
AFImageRequestOperation in order not asynchronous
I am implementing a code that downloads images and saves them in the database of the app,
I have an array of objects, each object contains the image url and some other information. To Download the ...
-3
votes
1answer
29 views
JSON + AFNetworking [closed]
I'm getting the following JSON from WP that uses Event Espresso. I want to extract a few information such as Event's name, Venue and Datetimes. I would also like to implement this using AFNetworking.
...
0
votes
1answer
16 views
UITableView afnetworking images swap positions
I have a problem with a tableview and images in the cells.
To load the images I use AFNetworking with the following code:
[celle.thumb setImageWithURLRequest:[NSURLRequest ...
0
votes
1answer
37 views
Download entire website
I want to be able to download the entire contents of a website and use the data in my app. I've used NSURLConnection to download files in the past, but I don't believe it is capable of downloading ...
1
vote
1answer
33 views
Is HTML tag make JSON file not valid?
Hey, I have a little problem here.
I can load JSON file using AFHTTPRequestOperation with this code
AFHTTPRequestOperation *operation = [[AFHTTPRequestOperation alloc] initWithRequest:request];
...
5
votes
1answer
31 views
Couldn't download from url in my app with AFNetwotking
Im noob in AFNetworking and I learning it now. I want download file from url and save in my app (Document Folder) but it dosen't work.I have one button that when click it start download.
this is my ...
0
votes
1answer
49 views
AFNetworking Enable GZIP
I am looking on the AFNetworking site that GZIP compression is supported
" Gzip decompression from server responses is already built into AFNetworking, as NSURLConnection will automatically ...
0
votes
0answers
10 views
Saving AFOAuth1Client AFOAuth1Token to make requests later
I am using AFOAuth1Client, I can successfully login and get the AFOAuth1Token returned to me, what where do I go from there?
I realize that I could use the getPath: method once I get the ...
1
vote
2answers
54 views
I get error when use AFNetworking in xcode for download file
I create one application that has one page and in this page exist one button that downloaded file when click on.
I can download file with AFNetworking but in my has error ....
this is my code :
- ...
-2
votes
0answers
59 views
AFNetworking Example for Username/Password Authentication? [closed]
For the last few hours I keep going back and forth between ASIHTTPRequest and AFNetworking and I just can't seem to figure them out.
I would use ASIHTTPRequest (their authentication tab in the ...
0
votes
2answers
48 views
how to download file with AFNetworking and store in document folder
I want create one application that download any file from internet and store in document folder.
I searching in google and this site and I understand to use AFNetworking is better.
in this framework I ...
0
votes
1answer
70 views
AFHTTPClient.h File Not Found
I have no idea why this is happening. I've installed AFNetworking in my project via a Podfile. Here's the current entry:
pod 'AFNetworking', '~> 1.2'
However when I call:
#import ...
0
votes
0answers
19 views
AFNetworking not getting response from Node server
I have an iOS app that uses RESTKIT and AFNetworking. I also have a backend written in NodeJS.
While testing, sometimes some API call will timeout, even though the when I check the server log, it ...
0
votes
2answers
79 views
AFNetworing - setImageWithURLRequest not working
I want to set tableview cell images in one of my apps. I use AFNetworking (1.2.1) and I do it with setImageWithURLRequest.
My code in which I set images looks like this:
if (user.avatar) {
...
1
vote
4answers
63 views
About asynchronous connection in AFNetworking : how to add the response data to NSMutable Array
im a noob and this is my first post here.
I tried to load images from URL and assign it to some NSMutableArray or UIImage variable, but it failed.
I knew that asynchronous things in AFNetworking has ...
0
votes
1answer
64 views
AFNetworking and setting up request queue
I'm making a AFRequestionOperation call:
- (id)init {
if (self = [super init]) {
// Other code
AFHTTPClient *client = [[AFHTTPClient alloc] init];
[client ...
0
votes
2answers
68 views
AFNetworking simple HTTP request
I am using AFNetworking in my project and I simply need to check if a URL is successful (status 2xx).
I tried
NSURLRequest *request = [NSURLRequest requestWithURL:url2check];
AFJSONRequestOperation ...
0
votes
1answer
55 views
AFNetworking : the current deployment target does not support automated _weak references
I'm using XCode 4.6.2 and also I'm new to iOS development. I'm trying to install the the AFNetworking library, but I get the following error when I'm trying to use it : "The current deployment target ...
0
votes
1answer
40 views
AFJsonRequest and Unit-Testing needs for synchronous request,
I'm trying to do some unit-testing on my code.
I'm facing an issue, unit-testing fonctions aren't waiting for the asynchronous request to be finished. I'd like to wait for it only if i'm testing it, ...
0
votes
0answers
38 views
File download fails with AFNetworking and other frameworks. wifi goes to sleep automatically - objective c
I'm downloading files with AFNetworking framework. File downloads well in foreground mode. But when I put my app to background, WiFi goes to sleep automatically after 10 minutes, by iOS, and my ...
0
votes
2answers
77 views
AFNetworking downloading custom file
I'm trying to download a custom file type from my server using AFNetworking - for some reason, it's saying it successfully downloaded the file, but it seems like the result is corrupt.
This is what I ...
1
vote
1answer
83 views
How to dynamically display parsed contents of XML on UITableView using RaptureXML and AFNetworking?
I'm using RaptureXML and the wrapper AFRaptureXMLRequestOperation that integrates AFNetworking and RaptureXML.
The code below is working fine. All is well downloading, parsing and displaying the ...
0
votes
0answers
33 views
Searching and Address on Google Using AFNetworking
I've been trying to search an address on google and return the Latitude and Longitude of that address. I'm almost there =D
The problem is.. I get a giant json back and I'm not sure how to get only ...
0
votes
0answers
14 views
EXC_BAD_ACCESS when trying to deserialize a subclass object from AFHTTPClient
I have a subclass of AFHTTPClient with NSCoding protocol methods implemented:
- (id)initWithCoder:(NSCoder *)aDecoder {
self = [super initWithCoder:aDecoder];
if (!self)
return nil;
...
0
votes
1answer
44 views
Error when calling AFNetworking getPath
I use AFNetworking for communicating with my web service, with the following code:
-(NSMutableDictionary*)getData:(NSString*)userID{
__block NSMutableDictionary *data;
AFHTTPClient *httpClient = ...
0
votes
0answers
27 views
Using NSURLCache to store WMS tiles takes too long
I'm retrieving WMS Tiles form our server:
NSURLRequest *url = [NSURLRequest requestWithURL:[metaData objectForKey:@"URL"] cachePolicy:NSURLRequestReturnCacheDataElseLoad timeoutInterval:10];
...
0
votes
1answer
124 views
AFNetworking and caching
I am downloading WMS tiles which I want to cache. I'm using AFNetworking which includes NSURLCache. The responses from the server do not contain Cache-Control protocols in the header.
I asked the ...
0
votes
1answer
124 views
AFNetworking and synchronous request to fulfil online registration process
I am using AFNetworking and I've read that synchronous responses are discouraged. yet I need to check whether a user already exist in the online database before the person can go to the next stage of ...
0
votes
1answer
43 views
CFRunLoopRunInMode() within AFHTTPClient success and failure blocks
I'm trying to use CFRunLoopRunInMode() to avoid returning in [AFHTTPClient getPath:...] completion blocks.
My code looks like:
NSLog(@"start");
__block BOOL someCondition = NO;
AFHTTPClient *client ...
0
votes
1answer
74 views
Uploading Multiple Files with AFNetworking - UIViewController not Deallocating
I have to upload multiple files, track their progress & subscribe to completion & failure blocks in order to show relevant message at the end of operation.
I wrote my own AFHTTPClient wrapper ...
0
votes
1answer
87 views
AFNetworking: getPath:parameters-method causes an issue
I´m trying to do a GET request to my web service, using AFNetworking(great framework). This is the code for the request:
AFHTTPClient *httpClient = [[AFHTTPClient alloc]initWithBaseURL:[NSURL ...
1
vote
1answer
43 views
Requesting data from Codeigniter to AFNetworking
I built a simple website with Codeigniter framework (www.imlecturer.arkmon.co.uk). It displays list of people according to search form. My json search request is index.php/find/findemp. Search fields ...
1
vote
2answers
141 views
With Objective-C, what is the best way to log in to a service and scrape content from the resulting page without an API?
One service I'm using doesn't have an API, but allows scraping, so I'm curious what the best way in iOS/Objective-C would be to do the following:
Get user login credentials
Submit them on the ...
0
votes
0answers
66 views
AFNetworking Upload: Does not work with HTTPClient?
I cannot seem to upload images to SmugMug using AFNetworking when I use the HTTPClient whether in code as below or as a singleton with I think the same settings. It displays progress and all but ends ...
0
votes
0answers
55 views
URL-encode a nested NSDictionary in AFNetworking
I'm trying to perform a GET HTTP Request passing along a normal NSDictionary that contains a mix of primitive types as well as an array of nested NSDictionarys. I'm passing in this dictionary into the ...
0
votes
1answer
32 views
AFJsonRequestOperaton - How to cancel?
Hi everyone I am interested to implement the pattern recommended here. I am looking at creating a NSMutableSet and storing my AFJSONRequestOperations to it so I can cancel these requests when my View ...
