Hi Stephen,
Thank you very much for you response. Are you saying I just need to
use "https" connection in python like following:
>>> conn = httplib.HTTPSConnection('
xxxx.appspot.com')
>>> conn.putrequest('POST', '
xxxx.appspot.com')
>>> conn.putheader('Content-Length', str(len(packet_send)))
>>> conn.putheader('Content-Type', 'text/plain; charset="utf-8"')
>>> conn.endheaders()
>>> conn.send(packet_send)
How the authentication at the server part is done without giving any
user name and password?
My current situation is I would like to have both python apps, one at
client end one at the server (GAE) end to communicate with each other
by sending data from client to server over https channel, but I am not
sure what is the appropriate way to implement such secure data
transmission. Would you be able to be specific please?
Many thanks,
Best regards,
Ruoshui
On 7月28日, 下午5时36分, Stephen Johnson <
onepagewo...@gmail.com> wrote: