Lambda文件写入S3

时间:2017-01-06 16:07:40

标签: amazon-s3 lambda

在过去的六个月里,我一直在使用Lambda功能下载NASA APOD并保存到S3存储桶。截至2016年12月23日,所有工作都按预期工作。现在,当我检查我的桶时,图像在那里,但大小为0字节。我在下面提供了我的代码。有谁知道是否有变化?谢谢!

<br.com.mobills.wear.views.WearableListItemLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:gravity="center_vertical|center_horizontal"
    android:layout_width="match_parent"
    android:layout_gravity="center_vertical"
    android:weightSum="2"
    app:layout_box="top|bottom"
    android:layout_height="match_parent">

    <ImageView
        android:id="@+id/icon"
        android:layout_width="36dp"
        android:layout_height="36dp"
        android:layout_marginRight="16dp"
        android:layout_marginLeft="16dp"
        android:padding="8dp"
        android:background="@drawable/circle_blue"
        android:src="@drawable/ic_credit_card_white_24dp"/>
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical">

            <TextView
                android:id="@+id/title"
                android:gravity="left"
                android:layout_height="wrap_content"
                android:text="adsfdsfasdfasdfasf sdf asdf asdf "
                android:maxLines="1"
                android:ellipsize="end"
                android:fontFamily="sans-serif-condensed-light"
                android:textColor="@color/white"
                android:textSize="14sp"
                android:layout_width="match_parent" />

            <TextView
                android:id="@+id/subtitle"
                android:gravity="left"
                android:layout_height="wrap_content"
                android:maxLines="1"
                android:text="R$1000000"
                android:fontFamily="sans-serif-condensed-light"
                android:textColor="@color/white"
                android:textSize="24sp"
                android:textStyle="normal|bold"
                android:layout_width="match_parent" />

    </LinearLayout>

1 个答案:

答案 0 :(得分:0)

发现NASA APOD API现在使用https而不是http用于图像。我不得不调整我的代码以使用https作为图像路径。