seed-kau / Todays-Movie

오늘 몇 편 :movie_camera:
Apache License 2.0
1 stars 0 forks source link

[MH] API 생성 및 JSON 통신 #2

Closed Danpatpang closed 5 years ago

Danpatpang commented 5 years ago

AWS Mobile Hub에서 API Gateway 생성 및 Lambda를 API Gateway에 연결. 사용자의 경우 API Key 값을 통해 Lambda로 접근.

image

Danpatpang commented 5 years ago

API Gateway 생성 시 private, protected, public 선택해야 함. (테스트는 public으로 진행.) image

Danpatpang commented 5 years ago

Mobile Hub에서 생성하는 리소스는 브라우저에서 접근이 가능하지만, Lambda Trigger를 통해 직접 생성하는 리소스의 경우 다음과 같은 에러를 출력.

{"message":"Missing Authentication Token"}

보안을 open을 하든, API 필요를 하든 결과는 동일

boribap commented 5 years ago

에러가 나는 이유 확인 및 수정

  1. 각 메소드마다 응답 메소드 추가 + 응답 스키마 설정해야함
  2. 사용량계획에 올바른 스테이지 추가
Danpatpang commented 5 years ago

Postman에서 API 키를 통한 Lambda 접근 확인. (GET / POST) image