I want to design an application that will get the video recorded from browser with RecordRTC (https://github.com/muaz-khan/WebRTC-Experiment/tree/master/RecordRTC/RecordRTC-to-Nodejs) and to be able to post it with authentication.
RecordRTC-to-Nodejs sample application works okay but it works public at the moment.
Actually I want to make that recorder embeddable to any page with API key and secret so I can limit & measure per client's recorded videos.
I've searched and read a little bit and that is the authentication method I need I guess; How do I implement secure OAuth2 consumption in Javascript?
What kind of strategy would you suggest to create such an embeddable recorder and make the recorded videos private for each user?