Live data from Hacker News

DotCloud.js - Access Cloud Services from the Browser

js.dotcloud.com

11–17 of 17 posts

Re: DotCloud.js - Access Cloud Services from the Browser

#11
post #7
post #6

if you close the video using the (x) on the lightbox the video disappears but you still hear the audio - you have to navigate off the page to silence it.

What browser / OS are you using? I haven't been able to reproduce it yet.

I encountered this problem on one of my sites.

The solution was -- rather than using the video player's API to stop or pause the video -- I had to remove the video entirely from the DOM with Jquery.remove()

Re: DotCloud.js - Access Cloud Services from the Browser

#13
I've looked at the client-side cloud API from time to time and I'm never comfortable with embedding my key/secret credential in the Javascript code. Anyone having access to the client code in the browser, which is everyone, will have access to my secret credential.

If anyone has an idea to deal with this, please elaborate.

Re: DotCloud.js - Access Cloud Services from the Browser

#14
post #13

I've looked at the client-side cloud API from time to time and I'm never comfortable with embedding my key/secret credential in the Javascript code. Anyone having access to the client code in the browser, which is everyone, will have access to my secret credential. If anyone has an idea to deal with this, please elaborate.

I've thought about this too. For me it's a matter of what somebody really "gets" with those keys. If I'm compromised by someone whose taken my keys and programmed a script against my service are they stealing anything? Well if I've applied some form of ACL and provided some secondary authentication against data they shouldn't be able to query I should be Ok.

Likewise with user accounts. If they take my keys, and somehow get someones password they'd have the same access they would otherwise have through the GUI. If I put user passwords into the code, well yeah that's totally bad on me.

I don't know. I'm not a security expert, however I've not been able to catch a problem with this. I'd love to know better.

Re: DotCloud.js - Access Cloud Services from the Browser

#15
post #13

I've looked at the client-side cloud API from time to time and I'm never comfortable with embedding my key/secret credential in the Javascript code. Anyone having access to the client code in the browser, which is everyone, will have access to my secret credential. If anyone has an idea to deal with this, please elaborate.

Hi, I'm one of the developers who's been working on this project at dotCloud, and more specifically on the twitter service. The example you're citing shows what I figured was the shortest way to try out the twitter API integration. And you're absolutely right for saying that as soon as your app goes public, it sucks.

This is why this call only has to be made one time ; the key and secret are then securely persisted into the database and the consumer secret can be ommitted in all subsequent calls. Alternatively, we also provide an API endpoint that you can just curl to provide the consumer key/secret. Our "detailed" documentation (http://js.dotcloud.com/doc.html#c4) is more thorough on that matter.

Hope that answers your question!

Edit: sorry for the late response, happened to be out of town for the last three days. Bad timing. :(

Re: DotCloud.js - Access Cloud Services from the Browser

#16
post #12

What's the security model?

Hey, this is a very good question. We're currently working out an auth solution that we'll implement directly at the transport level. We haven't figured out every detail yet, but we'll be sure to give more insight on that matter as soon as possible - we understand how important it is as soon as we leave the realm of toy apps.

Re: DotCloud.js - Access Cloud Services from the Browser

#17
post #13

I've looked at the client-side cloud API from time to time and I'm never comfortable with embedding my key/secret credential in the Javascript code. Anyone having access to the client code in the browser, which is everyone, will have access to my secret credential. If anyone has an idea to deal with this, please elaborate.

I've thought about this too. For me it's a matter of what somebody really "gets" with those keys. If I'm compromised by someone whose taken my keys and programmed a script against my service are they stealing anything? Well if I've applied some form of ACL and provided some secondary authentication against data they shouldn't be able to query I should be Ok. Likewise with user accounts. If they take my keys, and some…

I guess one of the most basic problems that could occur is someone using your keys to make unauthenticated requests and exhaust your rate limit.
Post reply on HN