Created
October 14, 2015 01:53
-
-
Save horie1024/042f515b7212fa1a63ef to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
resp = devicefarm.create_upload({ | |
project_arn: "プロジェクトのARN", | |
name: "app.apk", | |
type: "ANDROID_APP", | |
content_type: "application/octet-stream" | |
}) | |
# Pre-Signed URLの取得 | |
pre_signed_url = resp.upload.url | |
# 実行をスケジューリングする際に使用 | |
apk_arn = resp.upload.arn |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment