I am creating an application for iOS and I am using OAuth 1. GET requests seem to work fine but as soon as I try to make POST requests I get the following error :
According to Apple’s “Foundation Constants Reference” :
/
NSURLErrorUserCancelledAuthentication
Returned when an asynchronous request for authentication is cancelled by the user.
This is typically incurred by clicking a “Cancel” button in a username/password dialog, rather than the user making an attempt to authenticate.
/
Now I am not quite sure what is happening, as POST requests are generated pretty similarly to the GET requests. Any ideas what is causing this error ?
All the best,