我现在正在开发Node JS模块,其功能之一是显示Amazon s3存储桶中存在的文件。 现在我也知道了Amazon AccessKeyID和SecretAccessKey,也就是桶名。 所以,我编写了如下代码。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.nirav.rpta.fragments.OneFragment">
<WebView
android:id="@+id/webview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
/></RelativeLayout>
但是当我运行这段代码时,我总是被禁止403错误。
我尝试了几个亚马逊帐户,包括我朋友的帐号,所以亚马逊的accessKeyID和secretAccessKey以及Bucket信息都不值得怀疑,但保持失败。
你能告诉我我的代码有什么问题吗?
请帮帮我!!!