skrite
2012-Jun-14 20:26 UTC
need a file upload plugin and a way to authenticate from another app
Hey all, i need to be able to create a mobile application that will upload a file to my rails site. i need the application to authenticate and then upload. I am using the basic roll-your-own authenticate system with a sessions and users controllers. Any ideas where best to find a tutorial or gem that can help explain how to get started with something like this? thanks -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To view this discussion on the web visit https://groups.google.com/d/msg/rubyonrails-talk/-/kTNKhw8b0D0J. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
dmt
2012-Jun-15 09:20 UTC
Re: need a file upload plugin and a way to authenticate from another app
For authentication, I use devise, but you might use an authentication token method (though on a public network, you might want to use public/private key pairs). Paperclip and Carrierwave are good gems for file uploads. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To view this discussion on the web visit https://groups.google.com/d/msg/rubyonrails-talk/-/4Vhv982ILwYJ. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.