I'm in early (pre-coding) stages of developing a mobile web application using jQuery Mobile (we looked at Sencha Touch for a few weeks, but jQuery Mobile is a better fit for our team's competencies). I am wrapping the jQuery Mobile web application with PhoneGap to create an iPhone, iPod touch, and iPad native-ish application. I use Django for our web applications so intend to do the same here for the server-side, with some sort of JSON/Ajax/REST data flow for the interface between the mobile application and the server. Since it's a mobile-only application, we should have access to all the HTML5 kind of stuff.

While I am likely to come up with other issues/questions for this implementation, here is my current question/issue:

I need to set up the application so that the first time the user opens the application, they must enter a username and password to authenticate. Subsequently the user should not have to authenticate unless the user clicks a "settings" link which gives them a page to authenticate with a different account or password. The application should still authenticate to the server each time it is started, using the current username and password that was originally entered, to make sure that the account hasn't been disabled or the password changed or something.

I am pretty new to authentication schemes. What should I do?

link|improve this question

feedback

5 Answers

up vote 3 down vote accepted

I would advise against storing in HTML5 local/web storage. If you are targeting iOS PhoneGap, I would recommend using the Keychain Plugin: http://blogs.nitobi.com/shazron/2010/11/06/ios-keychain-plugin-for-phonegap/

link|improve this answer
Thanks for the answer. . . I'll mark it as accepted if this works! – Ben Jul 9 '11 at 2:30
We ended up using your plugin and its worked so far. (I believe my coworker sent a msg asking you a question, which you helpfully answered). While we figured using localStorage wouldn't be the end of the world, given the way the apps are packaged and the way we intend to limit distribution, but went with the keychain to do it the right way! – Ben Aug 7 '11 at 6:24
feedback

Although you're not going with Sencha Touch, there's a pretty good overview of the issues at HTTP Authentication.

As for storing the authentication information after an initial login, you could try local storage or a cookie (though you might need to use PhoneGap to enable cookie storage). HTML5 also provides key-value local client storage. If authentication cookies work I believe this could be handled automatically for you; otherwise you could implement a document.ready authentication check within an Ajax call using authentication data from local storage (or encrypted storage).

link|improve this answer
feedback

The KeyChain solution would work only on iOS devices, so if that's your only target you are fine.

But what about the others? Kind of a waste using PhoneGap but then deploying only to one framework...

I know localStorage is not secure, but if you are aware of the limitations there are ways to make a bit less "obvious".

Here's the jQuery.handleStorage plugin which also handles AES encryption... You could have a look at the source and implement only the parts you need (in case you don't want to use the whole plugin, which also supports desktop browsers!).

PS: I am not affiliated in any way to that plugin or the author

link|improve this answer
feedback

It says to include a PHP file into the HTML file, but I'm not sure if PhoneGap works with PHP. I just started using PhoneGap this weekend.

link|improve this answer
Do you have a link to "it" (it being the thing that is saying this thing.) I don't currently plan on using any php (since I'm using python/django/wsgi on the server side). – Ben Jun 5 '11 at 0:08
I was told to store the PHP file inside your server and then use AJAX to make information transactions. – Frantzdy Romain Jun 5 '11 at 23:21
feedback

Try HTTP Authentication with HTML Forms and see if it helps.

link|improve this answer
Thanks for the link, however based on this excerpt alone: "this technique works in IE6 and Firefox but is known not to work in both Opera and Safari, so if you care about those browsers you may want to think again about using this (or to spend some time investigating why it fails in those browsers)." I'm guessing it is not something i'm going to want to pursue for my mobile-only application; additionally, it doesn't address my "first-time-only" login requirement. . . hopefully i get a more on-point answer! :) – Ben Jun 5 '11 at 0:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.