Re: Android app that can post to a django server

2012-07-20 Thread Bill Freeman
On 7/17/12, gavin lyons wrote: > I have built the Django server as shown here > http://stackoverflow.com/questions/5871730/need-a-minimal-django-file-upload-example > > I have been trying to build an android app that will allow me to select > files on my phone and post them to the the server. All

Re: Android app that can post to a django server

2012-07-17 Thread Gink Labrev
If you want to post and access data via mobile, the best option is to create an API. You can use Tastypie to this task ( http://django-tastypie.readthedocs.org/en/latest/index.html). If you don't want to complicate now, you can create views that return JSON values to get data. For example: obj =

Android app that can post to a django server

2012-07-17 Thread gavin lyons
I have built the Django server as shown here http://stackoverflow.com/questions/5871730/need-a-minimal-django-file-upload-example I have been trying to build an android app that will allow me to select files on my phone and post them to the the server. All the examples i am finding are for pos