Skip to main content
Inspiring
May 16, 2017
Question

Any way to work with AWS cloudfront SDK?

  • May 16, 2017
  • 1 reply
  • 409 views

I'm looking to make a video AIR app. The videos will be hosted on AWS cloudfront. I'm thinking about making the video private so it can only be viewed with AWS key. The problem is there is now AS3 SDK or ANE. Anything out there?

This topic has been closed for replies.

1 reply

Known Participant
May 16, 2017

Write a server-side code in Nodejs. You'd need REST server -- use Loopback, and there's official AWS module for Node from Amazon. It's a learning curve but it works.

Directly uploading from mobile client is a big no-no as you'll have to embed your amazon security params into the mobile app.

Inspiring
May 16, 2017

Thanks. That's what I figured I have to do. Luckily, the content is dynamic so the content will filter through a web server where I can use a php AWS SDK. I'll be using php&mysql.