Could you please advise, how we can configure our Python app hosted on Google App Engine to accept the OPTIONS, GET, POST, PUT and DELETE from AJAX being done from browser?
The specifics of such calls are XmlHTTPRequest first does OPTIONS request to the server to see what cross-domain verbs are allowed and if desired one is in the list - browser does this request afterwards.
Right now we just get a 405 Method Not Allowed in attempt of browser to do OPTIONS request.
AJAX calls are being done from another site/domain.
Thank you,
Roman.