Django server side app (maybe a micro blog) and android app client - how to communicate -
i trying write django microblogging server , have 1) web interface , 2) android app client
for android app client, how communicate django server? there way pass ask entire class data (say class microblog objects or class bloguser objects) django powered server , print/display objects in android app?
you can pass objects mobile client using serialization, there django documentation: https://docs.djangoproject.com/en/dev/topics/serialization/.
i recommend communicate mobile clients using json format.
about client side: http://osamashabrez.com/client-server-communication-android-json/
Comments
Post a Comment