Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there any kind of protection for hosting files (images) in S3 and preventing that someone download zillion times a file just to damage you (AWS billing)?

Thanks

share|improve this question

1 Answer

up vote 1 down vote accepted

Services such as twitpic do this by:

  • Removing public/anonymous access to the files
  • Signing an access request with a short expiry time. (eg 30 seconds or so).
  • Providing the signed url to the end user.

This means that someone can access the file, but they have to retrieve it before the request expiry time.

Of course, it is then up to you to not sign requests from people who are abusing your site.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.