带有来自 Amazon S3 的 urlPath 的 TTImageView
从来自 S3 Amazon 的 urlPath 加载图像时出现错误,这是 Three20 的问题吗?
我从 Web 服务中获取 urlPath。Web
服务有一个脚本,可以检查我的某些内容,然后返回我的请求的图像(如果我是有效用户)。(为了安全起见)
当我手动时在网络浏览器中加载我从网络服务收到的图像 url 路径,它加载正常,但为什么它不会加载到 TTImageView 中?
I get error when loading images from a urlPath that comes from S3 Amazon, is this a problem with three20?
I get the urlPath by the way from a web service..
the web service has a script that checks something from me then returns the image of my request if i'm a valid user.. (something to do for security)
when I manually load the image url path i receive from my web service in a web browser, it loads normally, but why wont it load in the TTImageView?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我使用
TTImageView
来直接从亚马逊 S3 加载图像,并且没有遇到任何问题。我使用亚马逊提供的 S3 域映射功能,因此图像 URL 中包含我的域地址 (http://assets.domainname.com/image.jpeg)。
教程:http: //www.brangle.com/wordpress/2010/11/mapping-amazon-aws-s3-to-a-custom-domain-name/
I use the
TTImageView
with images loaded directly from amazon S3 and I haven't had any issues with it.I use the S3 domain mapping feature amazon offer, so the images URLs have my domain address in them (http://assets.domainname.com/image.jpeg).
Tutorial : http://www.brangle.com/wordpress/2010/11/mapping-amazon-aws-s3-to-a-custom-domain-name/
你的桶是新的吗?新的欧盟存储桶(不确定美国)将 URL 重定向到
S3-external-3.amazonaws.com
,直到正确设置 DNS 设置。也许 TTImageView 没有遵循重定向。
Is your bucket new? New EU buckets (not sure about US) redirect urls to
S3-external-3.amazonaws.com
until the dns settings are properly setup.Perhaps
TTImageView
is not following the redirect.