Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am a photographer and new to Android development. I want to create an Android app where a user can choose a picture from a gallery and select a print size. Then when they press Order button - the information (name, address, order info etc) should go to a server.

I want to use App Engine with Python as I was able to pull the guestbook tutorial and it's free.

My questions are:

  1. Where or how do I store images in the App Engine that I can easily update like in a folder. Or do I need another website hosting for this?

  2. How do I create a file (XML/JSON etc) that will have a picture with information (price per print size, ID, Image URL etc)

  3. Upon receipt of a HTTP request, how will I store the information on App Engine on user Orders?

I know it's way too much to ask but I wanna learn and do it by myself. Please don't get pissed. You can give me a step by step links to tutorials which I can follow to avail this.

share|improve this question
Just a sidenote... did you think about using the Java version of App Engine? It has certain benefits since Android uses Java too. – mibollma Jul 7 '11 at 23:20
not to be rude but i – soBinary Jul 7 '11 at 23:31
Do you have a specific programming question? It sounds like you want someone to plan your project for you - you'll get a much better response if you learn the basics of the technologies involved first, and ask specific questions about how to do particular parts. – Nick Johnson Jul 8 '11 at 0:30

closed as not a real question by mac, Nick Johnson, Peter Knego, Antony Vennard, Toon Krijthe Nov 11 '11 at 9:37

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

It's true you need to think hard. However, brief answers:

  1. Read about app engine's blobstore.
  2. You would probably model the data with a model object. Read about the datastore.
  3. You could store orders in the datastore. However, accepting credit card information needs special protection to be secure. You would probably want to integrate a payment processor like Paypal or Google Checkout.
share|improve this answer

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