Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Amazon API Gateway with Android 入門
Search
Pine Mizune
December 03, 2015
Programming
0
150
Amazon API Gateway with Android 入門
社内勉強会で発表した資料
Pine Mizune
December 03, 2015
Tweet
Share
More Decks by Pine Mizune
See All by Pine Mizune
多言語対応と絵文字ジェネレーター / i18n of Emoji Generator
pine
0
800
C++ 製グラフィックライブラリ Skia の紹介 / Introduction to the graphics library Skia written by C++
pine
0
1.8k
asyncio + aiohttp で作るウェブサービス / How to develop a web service with asyncio and aiohttp
pine
0
670
Lerna による明示的疎結合アーキテクチャ
pine
1
640
CircleCI 2.0 x JavaScript
pine
3
550
Perl 卒業式
pine
0
340
Android Studio の気になる warnings を抑制する方法まとめ
pine
0
500
Emoji Generator meets Browser Extensions
pine
1
3k
近年の OSS 開発における CI 選択のベストプラクティス
pine
3
4.5k
Other Decks in Programming
See All in Programming
Constant integer division faster than compiler-generated code
herumi
2
700
GUI操作LLMの最新動向: UI-TARSと関連論文紹介
kfujikawa
0
1k
STUNMESH-go: Wireguard NAT穿隧工具的源起與介紹
tjjh89017
0
390
サーバーサイドのビルド時間87倍高速化
plaidtech
PRO
0
520
為你自己學 Python - 冷知識篇
eddie
1
250
tool ディレクティブを導入してみた感想
sgash708
1
150
Portapad紹介プレゼンテーション
gotoumakakeru
1
130
TROCCO×dbtで実現する人にもAIにもやさしいデータ基盤
nealle
0
340
KessokuでDIでもgoroutineを活用する / Go Connect #6
mazrean
0
120
AI OCR API on Lambdaを Datadogで可視化してみた
nealle
0
180
250830 IaCの選定~AWS SAMのLambdaをECSに乗り換えたときの備忘録~
east_takumi
0
280
UbieのAIパートナーを支えるコンテキストエンジニアリング実践
syucream
2
740
Featured
See All Featured
Stop Working from a Prison Cell
hatefulcrawdad
271
21k
Designing Dashboards & Data Visualisations in Web Apps
destraynor
231
53k
Keith and Marios Guide to Fast Websites
keithpitt
411
22k
GraphQLとの向き合い方2022年版
quramy
49
14k
A Tale of Four Properties
chriscoyier
160
23k
Templates, Plugins, & Blocks: Oh My! Creating the theme that thinks of everything
marktimemedia
31
2.5k
Build your cross-platform service in a week with App Engine
jlugia
231
18k
Creating an realtime collaboration tool: Agile Flush - .NET Oxford
marcduiker
31
2.2k
A better future with KSS
kneath
239
17k
StorybookのUI Testing Handbookを読んだ
zakiyama
30
6k
How to Create Impact in a Changing Tech Landscape [PerfNow 2023]
tammyeverts
53
2.9k
[RailsConf 2023] Rails as a piece of cake
palkan
56
5.8k
Transcript
Amazon API Gateway with Android ⼊入⾨門 Pine Mizune
⽬目次 1. Amazon API Gateway とは? 2. API Gateway の利⽤用⼿手順
3. Android での実演
WHATʼ’S AMAZON API GATEWAY ? Section 1.
Amazon API Gateway とは ? • AWS 上で REST API
をサーバーレスで 公開可能なサービス • iOS / Android 向け SDK を直接出⼒力可能
API Gateway の良いところ • サーバーを⾃自ら管理する必要がない • API の実⾏行回数による課⾦金 ü 課⾦金額を低く抑えることが可能
• Android / iOS に同じ SDK が出⼒力可能 ü Request / Response をモデルとして出⼒力 ü 処理の実態とは別に JSON Schema で定義
HOW TO USE API GATEWAY ? Section 2.
AWS Lambda 関数を作成 JavaScript で記述 (Node.js 0.10.x)
API Gateway と Lambda を関連付け Request -‑> Lambda -‑> Response
を定義
Android SDK を⽣生成 iOS / Android / JavaScript SDK が⽣生成可能
jar を⽣生成し Android に組み込み ローカルでビルドし Android Studio に組み込む
DEMONSTRATION Section 3.