I am integrating openid in my website. I am able to retrieve data(ex email) from op provider(by query string). But different op provider gives data in different key like gmail gives it under openid.ext1.value.alia2 key and yahoo gives it in under some different key. how should i retrieve value from query string.
相关问题
- Carriage Return (ASCII chr 13) is missing from tex
- How to store image outside of the website's ro
- 'System.Threading.ThreadAbortException' in
- Request.PathInfo issues and XSS attacks
- How to dynamically load partial view Via jquery aj
相关文章
- asp.net HiddenField控件扩展问题
- asp.net HiddenField控件扩展问题
- Asp.Net网站无法写入错误日志,测试站点可以,正是站点不行
- asp.net mvc 重定向到vue hash字符串丢失
- FormsAuthenticationTicket expires too soon
- “Dynamic operations can only be performed in homog
- What is the best way to create a lock from a web a
- Add to htmlAttributes for custom ActionLink helper
You must check namespaces. For example, the server may return
openid.ns.ax = http://openid.net/srv/ax/1.0
, and that would mean "everything that starts withopenid.ax
relates to the AX extension".But it could be
openid.ns.qwerty = http://openid.net/srv/ax/1.0
as well, and then everything that starts withopenid.qwerty
would be related to the extension.Your code must read those namespaces and use aliases as defined by those. Read specifications for more information.