答案 0 :(得分:1)
您可以在此处查看文档: http://knowledgelayer.softlayer.com/
您可以从这个doc开始 http://knowledgelayer.softlayer.com/learning/introduction-object-storage
这可以帮助您通过REST处理Softlayer对象存储 http://sldn.softlayer.com/blog/waelriac/Managing-SoftLayer-Object-Storage-Through-REST-APIs
这里有更多通过API工作的文档 http://sldn.softlayer.com/reference/objectstorageapi
此致
答案 1 :(得分:1)
现在要注意Softlayer作为S3兼容对象存储(处理桶等) 所有信息都在这里: https://ibm-public-cos.github.io/crs-docs/crs-operations.html
API详情如下:
https://ibm-public-cos.github.io/crs-docs/crs-api-reference.html
答案 2 :(得分:0)
首先,您需要选择Object Storage S3 API,之后您将能够像使用AWS S3一样使用它,因为它们都使用标准S3 API,因此您可以使用any AWS SDK来访问和执行操作在你的对象存储桶上。
当我使用Laravel应用程序时,我只需要安装aws-sdk-php-laravel来使事情有效,这就是整个故事。