次のリクエスト ヘッダーを必要とする API があります。
Accept: application/json
また、Web サイトでは、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