0

Google Storage で POST オブジェクトを使用して、ユーザーがバケットにドキュメントをアップロードできるようにするための次のフォームを作成しています。フォームを送信すると、次のエラーが表示されます。ポリシーの作成が間違っていることは確かですが、正しく作成する方法がわかりません。いくつかの方法を試しました。Google のドキュメントでは、こちらのポリシーについて説明しています。ご協力ありがとうございました!

    <Error> 

<Code>InvalidPolicyDocument</Code> − <Message> The content of the form does not meet the conditions specified in the policy document. </Message> 
− <Details> Invalid value for conditions: {"acl":"private","failure_action_redirect":"http:\/\/www.example.com\/failure_instructions.html"} </Details> 
</Error>


class Policy {
    public $expiration = "2010-12-31T11:11:11Z";
    public $conditions = array("acl" => "private",
                        "failure_action_redirect" => "http://www.example.com/failure_instructions.html");
}
$policy = new Policy();
$policy = json_encode($policy);

$policy_utf = utf8_encode($policy);
$policy_base64 = base64_encode($policy_utf);
$policy_sig = base64_encode(hash_hmac('sha1', $policy_base64, $secret, TRUE));
?>

<form action="http://<example_bucket>.commondatastorage.googleapis.com" method="post" enctype="multipart/form-data">
            <input type="hidden" name="key" value="test_documenttttt">
            <input type="hidden" name="GoogleAccessId" value="<?php echo $key; ?>">
            <input type="hidden" name="policy" value="<?php echo $policy_base64; ?>">
            <input type="hidden" name="signature" value="<?php echo $policy_sig; ?>">
            <input type="file" name="file">
            <input type="submit" value="Upload!">
</form>
4

1 に答える 1

1

解決しました!

チュートリアルと同じくらい簡単でした-私はそれを調べすぎていました. 設定$policy = <the code>して UTF-8 エンコードするだけです。私の問題は、 を設定 $policy = <the example code>することでしたが、それを json_encode() します。すでにJSONエンコードされているため、JSON エンコーディングでめちゃくちゃになりました。それを読みすぎた私のせいです!

$policy = '{ "expiration": "2010-12-31T11:11:11Z",'.
                        '"conditions": ['.
                        '["starts-with", "$key", "" ],'.
                '{"acl": "private" }'.
                        ']'.
                        '}'; 
于 2010-12-29T17:10:19.183 に答える