Passing sensitive information from JavaScript to rails

I am currently writing a Firefox extension that will sync your tabs across different browser instances. I am using Ruby on Rails web application to sync different urls for each user.

The Firefox extension uses Javascript to parse open websites. I need to send username, password and list of public urls to a Rails application securely from Javascript.

Is there a way to pass this information to a Rails application from Javascript without compromising the password?

+1


source to share


1 answer


Is there any reason https won't work?



+2


source







All Articles