Server-Side Session Management Application

I need to create a server-based (php) application with an iOS client with loginis mechanisim authorization, but I don’t know about the session in iOS. My application requires a login to my website (PHP website) in order to receive data. I do not know if a session for an iPhone client is a cap on the server?

More details:

After sending a login request from the iPhone client to my web application, I think here a session is created here in my webapp (right?), What about my next request? can I access the same session created for the first request .. In other words: can I exchange data in a web session (on the server) to access every request sent by the iOS client after logging in?

+5
source share
1

- - .

, , cookie , cookie , , , .

cookie iOS, . NSURLRequests HTTPShouldHandleCookies, YES, .

( , ), cookie iOS API NSHTTPCookieStorage. [NSHTTPCookieStorage sharedHTTPCookieStorage], NSDictionary. , cookie .

+18

All Articles