22
20

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

API GatewayでCookieを扱う

Last updated at Posted at 2016-03-19

はじめに

API GatewayではCookieをはじめHTTPヘッダーをLambdaのパラメータなどに設定できます。ただ、具体的にどうすればよいかのサンプルが見当たらなかったので備忘録としてまとめておきます。

Method Request

まず、Method RequestのHTTP Request Headersに取得したHTTPヘッダーの項目名を設定します。ここれは、Cookieをサンプルにしているので、Cookieを設定します。

2016-03-19 (1).png

Integration Request

続けてIntegration RequestのMapping TemplateにMethod Requestで設定した値を設定します。ここで留意するのはCookieはURLエンコードされているので、まず$util.urlDecodeでデコードしておくと便利という点です。また、Cookieの値にJSONが設定されている場合には、さらに$util.escapeJavaScriptでエスケープする必要があります。これは、API Gatewayで扱えるのはCookieというHTTPヘッダーの値までですので、JSONを含んだCookieの場合には`aaa={"bbb":"cccc"};bbb={ddd:eee}"という値をLambda等に渡す必要があるため、文字列としてエスケープしておかないとエラーとなってしまいます。

2016-03-19 (2).png

22
20
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
22
20

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?