- 嗨,我将在我的 Web 应用程序中使用 Softlayer Server
- 我还想在 Softlayer 存储桶上存储图像和视频。但我不知道如何使用这项服务。提前致谢。
3 回答
现在注意 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
您可以在此处查看文档:http: //knowledgelayer.softlayer.com/
您可以从这个文档开始 http://knowledgelayer.softlayer.com/learning/introduction-object-storage
这可以帮助您通过 REST http://sldn.softlayer.com/blog/waelriac/Managing-SoftLayer-Object-Storage-Through-REST-APIs使用 Softlayer 对象存储
这里有更多通过 API 工作的文档 http://sldn.softlayer.com/reference/objectstorageapi
问候
首先,您需要选择 Object Storage S3 API,之后您将能够像使用 AWS S3 一样使用它,因为两者都使用标准 S3 API,因此您可以使用任何 AWS SDK访问对象存储桶并对其执行操作.
当我在一个 Laravel 应用程序上工作时,我只需要安装aws-sdk-php-laravel就可以使事情正常运行,这就是全部。