0

有一个 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
4

0 回答 0