I am trying to allow my users to log in from their mobile app to a Drupal site in order to retrieve some of their profile information. Anybody knows how to do it? I have the Services module on the site which is already serving some JSON files for the news.
feedback
|
|
There's a Drupal Phonegap module that allows an Android app to login, post and view articles on your Drupal site. I would recommend that you look at the source code for the module and the Android app as a reference for your app. Module: http://drupal.org/project/phonegap Source for Android app: http://code.google.com/p/drupal-phonegap/ There's also an example on how to do this here: http://www.tylerfrankenstein.com/user/4/code/drupal-json-services-examples-phonegap-jquery-mobile-android And if you're developing an iPhone app check this post out: http://www.jefflinwood.com/2011/10/easier-drupal-plugin-for-phonegap-ios-installation/ | |||
|
feedback
|
|
With the Services 3.x module for Drupal 6 or 7, you need to create an endpoint through the UI, e.g.:
Then enable the following resource for the newly created endpoint:
If your mobile app is HTML5 and JS based then you can use Ajax, for example in PhoneGap you could make a login page like this that would load your custom JS file:
Then when your app's login button is clicked, this implementation would go in my_app_login.js with your app's code:
Regardless of what platform(s) you are using to develop your mobile application, the call to the Services user login resource will be the same. I have a solid PhoneGap and Drupal example here: http://tylerfrankenstein.com/code/android-app-with-drupal-7-services-phonegap-and-jquery-mobile Alternatively, I made a module that provides a solid framework for communicating with a Drupal 6 or 7 site via PhoneGap and Services 3.x, it is called DrupalGap: | ||||
|
feedback
|