Shibboleth 宁静 api
我正在为一所大学编写一个 Android 应用程序,该应用程序使用 Shibboleth 来验证学生的身份。
由于我正在制作一个 android 本机应用程序(不是 webview),因此我想以编程方式传递用户名和密码并取回用户的用户凭据。 Shibboleth 是否有我可以使用的 Restful api?
例如。 CAS 有 https://wiki.jasig.org/display/CASUM/RESTful+API 这将允许我以编程方式发送用户名和密码并取回票凭证。 shibboleth 有类似的东西吗?
I am writing an android application for an University that uses Shibboleth for authenticating the students.
Since I am making a android native app (not a webview), I would like to programmatically pass the username and password and get back the user credentials of the user. Does Shibboleth have a restful api that I can use.
for ex. CAS has https://wiki.jasig.org/display/CASUM/RESTful+API which would allow me to programmatically send a username and password and get back the ticket credentials. Is there something similar for shibboleth?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Shibboleth 不提供 REST 接口,但它们确实有一个名为 ECP 的非面向浏览器的身份验证配置文件。
https://wiki.shibboleth.net/confluence/display/CONCEPT/ECP
Shibboleth does not provide a REST interface, but they do have a non-browser-oriented authentication profile called ECP.
https://wiki.shibboleth.net/confluence/display/CONCEPT/ECP
Shibboleth 没有任何安宁的支持。但是,您仍然可以使用 JAAS + Java 插件 + Rest 客户端通过调用基于 Restful 的身份验证系统来进行身份验证。我有类似的实现
Shibboleth doesn't have any restful support. However you can still use JAAS + Java plugin + Rest client to do authentication by calling your Restful based authentication system. I had similar implementation