openid

Can non-web applications use OpenID?

守給你的承諾、 提交于 2019-11-29 13:54:52
How can I make my desktop application into an OpenID relying party? Since OpenID has a specified protocol, it will either work all the time (assuming providers are conforming) or not at all. Additionally, since the OpenID protocol (at least the authentication bits, see the specification ) consists of simple HTTP requests, you could implement the protocol in a desktop application assuming you know how to make such requests. It is generally considered a bad idea though, since there are better technologies (OAuth) and it disrupts the user experience (being different from OpenID in a browser — see

Does HoTMaiL or Windows Live ID support OpenID authentication?

雨燕双飞 提交于 2019-11-29 12:25:40
问题 Does Windows Live ID or Hotmail (Passport) support OpenID based authentication? If yes, what is the endpoint url, and do I have to register my application somewhere to use it? If no, do they have their own API for 3rd-party authentication? 回答1: On the Windows Live Blog, there are only two different mentions of Open ID. Neither of those point to any actual movement on implementing Open ID. Welcome to the Windows Live for Developers Blog Announcing Support for OAuth 2.0 There is no mention of a

How do I use more than one OpenID? [closed]

这一生的挚爱 提交于 2019-11-29 12:24:48
问题 I have more than one OpenID as I have tried out numerous. As people take up OpenID different suppliers are going to emerge I may want to switch provinders. As all IDs are me, and all are authenticated against the same email address, shouldn't I be able to log into stack overflow with any of them and be able to hit the same account? 回答1: I think each site that implements OpenID would have to build their software to allow multiple entries for your OpenID credentials. However, just because a

AccessControlException when using Spring Security with OpenID

隐身守侯 提交于 2019-11-29 12:18:30
I try to implement Spring Security with OpenID in Google App Engine but I am getting a 'java.security.AccessControlException: access denied' for the RequestURI /j_spring_openid_security_chec It is working fine if I use '-D--enable_all_permissions=true' as VM Argument. Any ideas? Thanks, Ralph Idea 1 - look at the exception stacktrace to try to figure out whar is going on. Idea 2 - ask on the SpringSecurity forum and/or submit a bug report. I'd also note that lots of Java code breaks when you run things in a Java security sandbox. The normal use-case for SpringSecurity is to run in a J2EE

Is Windows Live ID an OpenID Provider? [closed]

随声附和 提交于 2019-11-29 10:12:31
I've heard different things. Seems like Microsoft experimented with a beta service , but I don't know if it's still available, or ever made it into production. If Windows Live ID is an OpenID Provider, where is the endpoint? No. Windows Live ID is not an OpenID Provider. They use a proprietary protocol. Ever since the close of their "beta" period, they've never announced plans to continue with it. toddm Check out this , I believe they use OAuth (not OpenID). Looks like it really hasn't made it into production. http://winliveid.spaces.live.com/ ( blog post permalink ) 来源: https://stackoverflow

OpenID endpoints

﹥>﹥吖頭↗ 提交于 2019-11-29 09:14:37
问题 I would like to allow users to log in into my website with OpenID. So far I have integrated Google and Yahoo. What other popular services are offering OpenID login endpoints? I'm particulary interested in Windows Live (but from what I've seen they recently closed the endpoint, and I couldn't find any information about new one). What about social websites, like Facebook or Twitter? I have seen the OpenID Directory but I didn't find any useful information. 回答1: take a look what stackoverflow is

Login to site using Gmail [closed]

一曲冷凌霜 提交于 2019-11-29 08:46:45
I am implemint a login in my site.I want to implement the login somewhat how it is done in stackoverflow.But with only one option of gmail. 1)The user must have chose login type as gmail 2)He must enter his gmail username and password 3)He must be redirecred back to site i am very new in this ..Any help plz This is very easy to accomplish with LightOpenID . They have an example available with that use case in mind. <?php # Logging in with Google accounts requires setting special identity, so this example shows how to do it. require 'openid.php'; try { $openid = new LightOpenID; if(!$openid-

Azure Active Directory Graph API - access token for signed in user

核能气质少年 提交于 2019-11-29 08:12:36
Azure Active Directory Graph Api allows you to perform operations on the signed in user. https://msdn.microsoft.com/en-us/library/azure/ad/graph/api/signed-in-user-operations I don't know how to obtain an access token for Graph API on behalf of the signed in user. I can obtain an access token for my web application, but this is not on behalf of a particular user: var authContext = new AuthenticationContext(authorityString); var result = await authContext.AcquireTokenAsync ( "https://graph.windows.net", clientCredential // Application ID, application secret ); string accessToken = result.Token;

转载 | 单点登录五大方案及最佳工具推荐(国际版)

懵懂的女人 提交于 2019-11-29 07:58:34
单点登录 (SSO) 可减少弱密码风险和账户访问管理开销。本文介绍顶级单点登录解决方案提供商。 另外,推荐国内 IDaaS 新秀 Authing.cn 的SSO方案: 用 Authing 10 分钟实现 SSO 单点登录 (SSO) 集中了会话和用户身份验证服务,仅需一组凭证即可登录多个应用。用户体验、IT 管理效率和安全程度都有所提升。密码丢失或弱密码风险也可藉由 SSO 加以缓解,与账户访问管理有关的开销更是能得到大幅降低。 如果您尚未实现任何 SSO 或身份管理工具,亦或正在寻求升级,下面的 SSO 工具大盘点可带领您对 SSO 市场有个初步了解。今天的威胁环境中,密码管理的分量越来越重,有必要让用户抛弃重复使用老旧密码的恶劣习惯。 SSO 五大基本策略 1. 企业密码管理器 如果开销和 IT 支持都成问题,1Password 或 Lastpass(如今归属 LogMeln)这样的企业密码管理器是个不错的开始。此类产品很适合集中保存所有密码,便于在需要时插入登录进程中。而且各种应用场景都适用,比如浏览器和智能手机登录。但除了访问密码库,这种产品一般不支持多因子身份验证 (MFA)。费率大约在每月每用户 8 美元左右。 2. 全方位 SSO 解决方案 该方案比使用静态密码要好一些。如果员工数量超 100 人,IT 支持水平也过得去,上述密码管理工具的局限性就很明显了

微信小程序的统一服务消息 uniformMessage.send

这一生的挚爱 提交于 2019-11-29 07:27:13
小程序的统一服务消息 uniformMessage.send 微信公众号有模板消息 ,限制条件为当前每个账号的模板消息的日调用上限为10万次,单个模板没有特殊限制。【2014年11月18日将接口调用频率从默认的日1万次提升为日10万次,可在MP登录后的开发者中心查看】。当账号粉丝数超过10W/100W/1000W时,模板消息的日调用上限会相应提升,以公众号MP后台开发者中心页面中标明的数字为准。 小程序也有模板消息 ,但是条件苛刻 模板下发条件:用户本人在微信体系内与页面有交互行为后触发。 1. 支付 当用户在小程序内完成过支付行为,可允许开发者向用户在7天内推送有限条数的模板消息(1次支付可下发3条,多次支付下发条数独立,互相不影响) 2. 提交表单 当用户在小程序内发生过提交表单行为且该表单声明为要发模板消息的,开发者需要向用户提供服务时,可允许开发者向用户在7天内推送有限条数的模板消息(1次提交表单可下发1条,多次提交下发条数独立,相互不影响) 若没有交互则不能发送服务消息。 小程序自身没有模板消息,服务消息条件苛刻,能否将消息发送到关联的公众号呢?答案是可以的,当然前提是得先关注这个关联的公众号 这个接口的两个参数得记录下 POST https://api.weixin.qq.com/cgi-bin/message/wxopen/template/uniform_send