Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
swift post --read-acl "cc424f1b7230a8f1aeb573a899abd97d:*" testPrivateContainer

You can verify the Read ACL has been updated with the stat command. It should show the value you provided inside the quotes. 

  • You are able to add multiple users by using a , to seperate separate the values, here is an example with two users in the read list

    Code Block
    swift post --read-acl "cc424f1b7230a8f1aeb573a899abd97d:*,a16b42b61e9a489ca747e3b1cec6e62e:*" testPrivateContainer


4) You can verify the Read ACL has been updated with the stat command again. If everything looks good, the below is a basic example of how to read an object in that shared container in Python.

...