惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

D
DataBreaches.Net
T
The Exploit Database - CXSecurity.com
V
Vulnerabilities – Threatpost
Know Your Adversary
Know Your Adversary
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
N
News and Events Feed by Topic
Spread Privacy
Spread Privacy
Application and Cybersecurity Blog
Application and Cybersecurity Blog
S
Secure Thoughts
G
GRAHAM CLULEY
Google Online Security Blog
Google Online Security Blog
Help Net Security
Help Net Security
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
O
OpenAI News
Google DeepMind News
Google DeepMind News
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
Security Archives - TechRepublic
Security Archives - TechRepublic
L
LINUX DO - 最新话题
Microsoft Azure Blog
Microsoft Azure Blog
C
Cybersecurity and Infrastructure Security Agency CISA
Stack Overflow Blog
Stack Overflow Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
L
Lohrmann on Cybersecurity
H
Hacker News: Front Page
W
WeLiveSecurity
P
Privacy International News Feed
Forbes - Security
Forbes - Security
月光博客
月光博客
PCI Perspectives
PCI Perspectives
T
Tailwind CSS Blog
N
News and Events Feed by Topic
T
Threat Research - Cisco Blogs
Engineering at Meta
Engineering at Meta
F
Full Disclosure
AI
AI
Hacker News - Newest:
Hacker News - Newest: "LLM"
Schneier on Security
Schneier on Security
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
B
Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
D
Darknet – Hacking Tools, Hacker News & Cyber Security
V
Visual Studio Blog
The Hacker News
The Hacker News
博客园 - 叶小钗
G
Google Developers Blog
Google DeepMind News
Google DeepMind News
博客园 - 司徒正美
T
The Blog of Author Tim Ferriss

博客园 - myx

安装gitlab管理自己的代码 升级Tornado到4后weibo oauth登录不了 SQL Server 无日志文件附加数据库 用monit监控系统关键进程 Failed to read auto-increment value from storage engine错误的处理方法 今天测试了一下 sqlalchemy 性能 PIL The _imaging C module is not installed phpExcel大数据量情况下内存溢出解决 tcpdf慢及常用的一些方法及问题 Python获取WebService CodeIgniter出现Disallowed Key Characters的问题 CodeIgniter链接ms sql 如果数据库名称有点号连接出错 用python写windows服务 CodeIgniter链接ms sql 的过程windows 2008 关于NTLM认证的.NET,php,python登录 DotNetOpenAuth的Facebook登录,获取头像与基本资料 php里的html内容切取 js生成新加坡的NRIC号码 PowerDesigner 链接MySql 用ODBC链接不上的问题
Sina站内应用的登录
myx · 2012-07-24 · via 博客园 - myx
if 没有登录 {

<script src="http://tjs.sjs.sinajs.cn/t35/apps/opent/js/frames/client.js" language="JavaScript"></script>
<script>
function authLoad() {
App.AuthDialog.show({
client_id: '2069027236', //必选,appkey
redirect_uri: 'http://apps.weibo.com/randytest', //必选,授权后的回调地址,注意是:apps.weibo.com这域名的
height: 1 //可选,默认距顶端120px
});
}
//authLoad();
</script>

}

然后会弹出一个登录的DIV,登录后会自动返回到app首页,然后在app page load的代码里写:

            string signedRequest = Request.Params["signed_request"]; 

            ViewBag.Message = ValidateSignedRequest(signedRequest);
 public string App_Secret = "xxxxxxxxxxxxxxxx";

        private string ValidateSignedRequest(string signedRequest)
        {
            string decodedPayload = "";
            string[] signedRequestArray = signedRequest.Split('.');
            string expectedSignature = signedRequestArray[0];
            string payload = signedRequestArray[signedRequestArray.Length - 1];
            byte[] Hmac = SignWithHmac(UTF8Encoding.UTF8.GetBytes(payload), UTF8Encoding.UTF8.GetBytes(App_Secret));
            string HmacBase64 = ToUrlBase64String(Hmac);
            bool result = (HmacBase64 == expectedSignature);
            if (result)
            {
                decodedPayload = System.Text.UTF8Encoding.UTF8.GetString(FromBase64ForUrlString(payload));
            }
            return decodedPayload;
        }
        private byte[] SignWithHmac(byte[] dataToSign, byte[] keyBody)
        {
            using (System.Security.Cryptography.HMACSHA256 hmacAlgorithm = new System.Security.Cryptography.HMACSHA256(keyBody))
            {
                hmacAlgorithm.ComputeHash(dataToSign);
                return hmacAlgorithm.Hash;
            }
        }
        private string ToUrlBase64String(byte[] Input)
        {
            return Convert.ToBase64String(Input).Replace("=", String.Empty).Replace('+', '-').Replace('/', '_');
        }
        private byte[] FromBase64ForUrlString(string base64ForUrlInput)
        {
            int padChars = (base64ForUrlInput.Length % 4) == 0 ? 0 : (4 - (base64ForUrlInput.Length % 4));
            StringBuilder result = new StringBuilder(base64ForUrlInput, base64ForUrlInput.Length + padChars);
            result.Append(String.Empty.PadRight(padChars, '=')).Replace('-', '+').Replace('_', '/');
            return Convert.FromBase64String(result.ToString());
        }

这样ValidateSignedRequest 返回的就有user的资料了。如下这样的:

{"user":{"country":"cn","locale":""},"algorithm":"HMAC-SHA256","issued_at":1343130106,"expires":1343216506,"oauth_token":"2.00DBErpBCV7BQC169c3e7800XXXXX","user_id":1682372793,"referer":null}

搞定,然后你懂的