I am using api with oauth2, and need to refresh the access token when it expires. So I want to resent the request after the request is refreshed. I am concerning whether the NSURLConnection will change the http request object. Thanks in advance!
Share
Have you checked out the URL loading guide? It has this in a box in the text:
So you can reuse your request as much as you like without fear of modification.
NSURLConnectionworks with a copy of it.