博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
轻松实现QQ用户接入
阅读量:6416 次
发布时间:2019-06-23

本文共 658 字,大约阅读时间需要 2 分钟。

1. 申请合作伙伴ID (PID),Key (PKey)
2. 发送请求
  https://graph.qq.com/oauth2.0/authorize?response_type=code&client_id=100000353&redirect_uri=http://www.wodongni.com/loginReturn.aspx
  redirect_uri:回传URL
  client_id: 合作伙伴ID (PID)
  返回:
   string code = Request.QueryString["code"];
3. https://graph.qq.com/oauth2.0/me?access_token=****access_token
  access_token: 第2部获取的code 值
   返回:
   callback( {"client_id": 合作伙伴ID(PID),"openid":"****openID"} );
4. https://graph.qq.com/user/get_user_info?access_token=****access_token&oauth_consumer_key=100236353&openid=****openID
 返回:
 { "ret":0, "msg":"", "nickname":"QQ姓名", "figureurl":"头像1", "figureurl_1":"头像2", "figureurl_2":"头像3", "gender":"男" }

转载地址:http://wdpra.baihongyu.com/

你可能感兴趣的文章
第七次作业
查看>>
Oracle中NVARCHAR2与VARCHAR2的区别
查看>>
php debug
查看>>
Ubuntu构建LVS+Keepalived高可用负载均衡集群【生产环境部署】
查看>>
lvm实现快速备份文件及数据库,lvm快照原理
查看>>
设计模式之Factory Method(工厂方法)
查看>>
10K入职linux运维岗位小伙伴感谢信及面试经历分享
查看>>
zookeeper入门之Curator的使用之几种监听器的使用
查看>>
[转]Reporting Service部署之访问权限
查看>>
innerxml and outerxml
查看>>
validform校验框架不显示错误提示
查看>>
flink 获取上传的Jar源码
查看>>
Spring Data JPA Batch Insertion
查看>>
UEditor自动调节宽度
查看>>
JAVA做验证码图片(转自CSDN)
查看>>
Delphi TServerSocket,TClientSocket实现传送文件代码
查看>>
JS无聊之作
查看>>
Mac上搭建ELK
查看>>
443 Chapter7.Planning for High Availability in the Enterprise
查看>>
框架和语言的作用
查看>>