GAE Python通过提交按钮

时间:2016-01-19 01:23:28

标签: python google-app-engine get-request

有一个API需要以下请求标头:

Accept: application/json

在网站上,它说它使用REST协议和GET HTTP方法。 我目前正在使用Google App Engine(使用Python)并尝试制作一个简单的表单,用户在坐标中键入内容,当他们点击提交按钮时,它会获取天气信息。如何将其添加到标题?

这是我的代码:

form = '''
<form method="get" action="http://some.website.fakeurl">
    <label>Latitude:
        <input name="lat">
    </label>
    <label>Longitude:
        <input name="lon">
    </label>
    <input type="submit">
</form>
'''

class MainPage(webapp2.RequestHandler):
    def get(self):
        self.response.out.write(form)

所需的请求看起来像这样:

Accept: application/json
access_token: 
appKey: **************************

Get Method http://some.website.fakeurl/weather?lon=126.9658000000&lat=37.5714000000

0 个答案:

没有答案