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
780
C++ 製グラフィックライブラリ Skia の紹介 / Introduction to the graphics library Skia written by C++
pine
0
1.7k
asyncio + aiohttp で作るウェブサービス / How to develop a web service with asyncio and aiohttp
pine
0
660
Lerna による明示的疎結合アーキテクチャ
pine
1
630
CircleCI 2.0 x JavaScript
pine
3
540
Perl 卒業式
pine
0
330
Android Studio の気になる warnings を抑制する方法まとめ
pine
0
490
Emoji Generator meets Browser Extensions
pine
1
2.9k
近年の OSS 開発における CI 選択のベストプラクティス
pine
3
4.5k
Other Decks in Programming
See All in Programming
C++20 射影変換
faithandbrave
0
500
What Spring Developers Should Know About Jakarta EE
ivargrimstad
0
170
Team operations that are not burdened by SRE
kazatohiei
1
100
たった 1 枚の PHP ファイルで実装する MCP サーバ / MCP Server with Vanilla PHP
okashoi
1
160
レガシーシステムの機能調査・開発におけるAI利活用
takuya_ohtonari
0
610
Rubyでやりたい駆動開発 / Ruby driven development
chobishiba
1
130
datadog dash 2025 LLM observability for reliability and stability
ivry_presentationmaterials
0
110
AIエージェントはこう育てる - GitHub Copilot Agentとチームの共進化サイクル
koboriakira
0
280
関数型まつり2025登壇資料「関数プログラミングと再帰」
taisontsukada
2
840
データの民主化を支える、透明性のあるデータ利活用への挑戦 2025-06-25 Database Engineering Meetup#7
y_ken
0
290
Cline指示通りに動かない? AI小説エージェントで学ぶ指示書の書き方と自動アップデートの仕組み
kamomeashizawa
1
570
Create a website using Spatial Web
akkeylab
0
300
Featured
See All Featured
Designing for Performance
lara
609
69k
Optimizing for Happiness
mojombo
379
70k
Exploring the Power of Turbo Streams & Action Cable | RailsConf2023
kevinliebholz
32
5.9k
Product Roadmaps are Hard
iamctodd
PRO
53
11k
The World Runs on Bad Software
bkeepers
PRO
69
11k
Why You Should Never Use an ORM
jnunemaker
PRO
56
9.4k
Agile that works and the tools we love
rasmusluckow
329
21k
Gamification - CAS2011
davidbonilla
81
5.3k
Site-Speed That Sticks
csswizardry
10
650
Visualizing Your Data: Incorporating Mongo into Loggly Infrastructure
mongodb
46
9.6k
A better future with KSS
kneath
239
17k
The Web Performance Landscape in 2024 [PerfNow 2024]
tammyeverts
8
670
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.