ASP.Net 中的 Amazon CloudFront 失效
我不确定如何使用 ASP.Net 向 Amazon CloudFront 发送请求以使对象失效。
详细信息位于此处 http://docs.amazonwebservices.com/ AmazonCloudFront/latest/DeveloperGuide/index.html?Invalidation.html 但我不知道如何在 ASP.Net 中实现这一点。
I am not sure how to send a request using ASP.Net to Amazon CloudFront to invalidate an object.
The details are here http://docs.amazonwebservices.com/AmazonCloudFront/latest/DeveloperGuide/index.html?Invalidation.html
but I am not sure how to implement this in ASP.Net.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
从最新版本的适用于 .NET 的 AWS 开发工具包 (1.5.8.0) 开始,接受的答案不再有效。这应该可以解决问题:
...
The accepted answer no longer works as of the latest version of the AWS SDK for .NET (1.5.8.0). This should do the trick:
...
让它工作了,如果其他人发现它有用的话,就在这里。
Got it working, here it is if anyone else finds it useful.
这是上面的 python 版本,如果有人觉得有用的话
Here's a python version of the above, if anyone finds it useful
使用 来自 amazon 的 AWSSDK .net api 包装器 使此任务变得更加容易。
...
using the AWSSDK .net api wrapper from amazon makes this task even easier.
...
这是珀尔:
Here's perl: