ember.js – EmberJS:我什么时候应该使用Torii vs Ember-Simple-Auth?

我正在尝试学习我正在编写的Web应用程序的身份验证.我想要的只是一个登录名和密码,并确保用户无法编写/编辑其他帖子,除非他们已登录.

我不确定我是否完全理解它.但是,如果您需要进行Facebook或Google身份验证,Torii似乎更好,而simple-auth更适合登录.这是正确的吗?还有其他东西Torii可以做的那样Simple-Auth不能吗?有些东西,Simple-Auth可以做Torii不能做的事情吗?

最佳答案 实际上,正如您在 this link中所读到的,将两者结合使用是有意义的:

Simple Auth is more about maintaining session/session events, providing a framework for authenticating a strategy, and authorizing requests. Torii is more about interfacing with these external authentications. So, it’s not as though Simple Auth and Torii could not exist side by side.

点赞