- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章iOS微信第三方登录实现由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
1、接入微信第三方登录准备工作。 移动应用微信登录是基于oauth2.0协议标准构建的微信oauth2.0授权登录系统。 在进行微信oauth2.0授权登录接入之前,在微信开放平台注册开发者帐号,并拥有一个已审核通过的移动应用,并获得相应的appid和appsecret,申请微信登录且通过审核后,可开始接入流程。(注意) 1、下载ios微信sdk。 下载地址 。
2、将sdk放到工程目录中.
3、补充导入一些依赖框架.
4、添加url types 。
5、添加ios9 url schemes. 。
注意:如果没有做这步的话会出现以下错误. 。
1
|
-canopenurl: failed
for
url:
"weixin://app/wx9**********dfd30/"
- error:
"this app is not allowed to query for scheme weixin"
|
6、ios9中新增app transport security(简称ats)特性, 主要使到原来请求的时候用到的http,都转向tls1.2协议进行传输。这也意味着所有的http协议都强制使用了https协议进行传输。需要在info.plist新增一段用于控制ats的配置:
<key>nsapptransportsecurity</key> <dict> <key>nsallowsarbitraryloads</key> <true/> </dict> 。
如果我们在ios9下直接进行http请求是会收到如下错误提示:
1
|
**app transport security has blocked a cleartext http (http:
//) resource load since it is insecure. temporary exceptions can be configured via your app's info.plist file.**
|
7、向微信终端程序注册第三方应用,并在第三方应用实现从微信返回 在appdelegate.m中引入"wxapi.h"头文件,然后写入如下
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#import "appdelegate.h"
#import "loginviewcontroller.h"
#import "wxapi.h"
#pragma mark - application delegate
- (
bool
)application:(uiapplication *)application didfinishlaunchingwithoptions:(nsdictionary *)launchoptions {
[wxapi registerapp:@
"wxd1931d4a0e46****"
withdescription:@
"wechat"
];
return
yes;
}
// 这个方法是用于从微信返回第三方app
- (
bool
)application:(uiapplication *)application handleopenurl:(nsurl *)url {
[wxapi handleopenurl:url delegate:self];
return
yes;
}
|
8、请求code 开发者需要配合使用微信开放平台提供的sdk进行授权登录请求接入。正确接入sdk后并拥有相关授权域(scope,什么是授权域?)权限后,开发者移动应用会在终端本地拉起微信应用进行授权登录,微信用户确认后微信将拉起开发者移动应用,并带上授权临时票据(code).
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#import "loginviewcontroller.h"
#import "registerviewcontroller.h"
#import "mbprogresshud.h"
#import "afnetworking.h"
#import "wxapi.h"
#pragma mark - 微信登录
/*
目前移动应用上德微信登录只提供原生的登录方式,需要用户安装微信客户端才能配合使用。
对于ios应用,考虑到ios应用商店审核指南中的相关规定,建议开发者接入微信登录时,先检测用户手机是否已经安装
微信客户端(使用sdk中的iswxappinstall函数),对于未安装的用户隐藏微信 登录按钮,只提供其他登录方式。
*/
- (ibaction)wechatloginclick:(id)sender {
if
([wxapi iswxappinstalled]) {
sendauthreq *req = [[sendauthreq alloc] init];
req.scope = @
"snsapi_userinfo"
;
req.state = @
"app"
;
[wxapi sendreq:req];
}
else
{
[self setupalertcontroller];
}
}
#pragma mark - 设置弹出提示语
- (
void
)setupalertcontroller {
uialertcontroller *alert = [uialertcontroller alertcontrollerwithtitle:@
"温馨提示"
message:@
"请先安装微信客户端"
preferredstyle:uialertcontrollerstylealert];
uialertaction *actionconfirm = [uialertaction actionwithtitle:@
"确定"
style:uialertactionstyledefault handler:nil];
[alert addaction:actionconfirm];
[self presentviewcontroller:alert animated:yes completion:nil];
}
|
执行完上面那一步后,如果客户端安装了微信,那么就会向微信请求相应的授权,图如下
还有在实际的使用中我们还要结合需求做一些改变。因为微信授权后access_token(2小时)之类的字段都是有效期的在有效期范围内,我们是没必要让用户再次授权的,很可能你的实现,会如我下面所写的(loginviewcontroller) 。
。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
// loginviewcontroller.h
#import <uikit/uikit.h>
@interface loginviewcontroller : baseviewcontroller
/** 通过block去执行appdelegate中的wechatloginbyrequestforuserinfo方法 */
@property (copy, nonatomic)
void
(^requestforuserinfoblock)();
@end
// loginviewcontroller.m
#pragma mark - 微信登录
/*
目前移动应用上德微信登录只提供原生的登录方式,需要用户安装微信客户端才能配合使用。
对于ios应用,考虑到ios应用商店审核指南中的相关规定,建议开发者接入微信登录时,先检测用户手机是否已经安装
微信客户端(使用sdk中的iswxappinstall函数),对于未安装的用户隐藏微信 登录按钮,只提供其他登录方式。
*/
- (ibaction)wechatloginclick:(id)sender {
nsstring *accesstoken = [[nsuserdefaults standarduserdefaults] objectforkey:wx_access_token];
nsstring *openid = [[nsuserdefaults standarduserdefaults] objectforkey:wx_open_id];
// 如果已经请求过微信授权登录,那么考虑用已经得到的access_token
if
(accesstoken && openid) {
afhttprequestoperationmanager *manager = [afhttprequestoperationmanager manager];
nsstring *refreshtoken = [[nsuserdefaults standarduserdefaults] objectforkey:wx_refresh_token];
nsstring *refreshurlstr = [nsstring stringwithformat:@
"%@/oauth2/refresh_token?appid=%@&grant_type=refresh_token&refresh_token=%@"
, wx_base_url, wxpatient_app_id, refreshtoken];
[manager get:refreshurlstr parameters:nil success:^(afhttprequestoperation *operation, id responseobject) {
nslog(@
"请求reaccess的response = %@"
, responseobject);
nsdictionary *refreshdict = [nsdictionary dictionarywithdictionary:responseobject];
nsstring *reaccesstoken = [refreshdict objectforkey:wx_access_token];
// 如果reaccesstoken为空,说明reaccesstoken也过期了,反之则没有过期
if
(reaccesstoken) {
// 更新access_token、refresh_token、open_id
[[nsuserdefaults standarduserdefaults] setobject:reaccesstoken forkey:wx_access_token];
[[nsuserdefaults standarduserdefaults] setobject:[refreshdict objectforkey:wx_open_id] forkey:wx_open_id];
[[nsuserdefaults standarduserdefaults] setobject:[refreshdict objectforkey:wx_refresh_token] forkey:wx_refresh_token];
[[nsuserdefaults standarduserdefaults] synchronize];
// 当存在reaccesstoken不为空时直接执行appdelegate中的wechatloginbyrequestforuserinfo方法
!self.requestforuserinfoblock ? : self.requestforuserinfoblock();
}
else
{
[self wechatlogin];
}
} failure:^(afhttprequestoperation *operation, nserror *error) {
nslog(@
"用refresh_token来更新accesstoken时出错 = %@"
, error);
}];
}
else
{
[self wechatlogin];
}
}
- (
void
)wechatlogin {
if
([wxapi iswxappinstalled]) {
sendauthreq *req = [[sendauthreq alloc] init];
req.scope = @
"snsapi_userinfo"
;
req.state = @
"gstdoctorapp"
;
[wxapi sendreq:req];
}
else
{
[self setupalertcontroller];
}
}
#pragma mark - 设置弹出提示语
- (
void
)setupalertcontroller {
uialertcontroller *alert = [uialertcontroller alertcontrollerwithtitle:@
"温馨提示"
message:@
"请先安装微信客户端"
preferredstyle:uialertcontrollerstylealert];
uialertaction *actionconfirm = [uialertaction actionwithtitle:@
"确定"
style:uialertactionstyledefault handler:nil];
[alert addaction:actionconfirm];
[self presentviewcontroller:alert animated:yes completion:nil];
}
|
当有access_token和openid时输出
1
2
3
4
5
6
7
|
**请求****reaccess****的****response = {**
**
"access_token"
=
"oezxceiibsksxw0eoyliek3botsvarovfsxb5oysh6dewfflsqrgu3fphslkkkhookra9h-jmzub5npom-iy5ybfea1nkmrycbl0fj_s46ofkolugoruy8jytdrddiifdgs2fxgo5odetpnpfk3exa"
;**
**
"expires_in"
= 7200;**
** openid = oxskgs62cjgfhfx05dsjy9sjw2ka;**
**
"refresh_token"
=
"oezxceiibsksxw0eoyliek3botsvarovfsxb5oysh6dewfflsqrgu3fphslkkkhoowptkgejutuiueutxrjkolhgz9b9ogc3kmbibu4ekc4ytmgzszayjypmwq-c4rje1rzmlrqvjuwgb5rofnjykw"
;**
** scope =
"snsapi_base,snsapi_userinfo,"
;**
**}**
|
刷新access_token有效期: access_token是调用授权关系接口的调用凭证,由于access_token有效期(目前为2个小时)较短,当access_token超时后,可以使用refresh_token进行刷新,access_token刷新结果有两种:
1. 若access_token已超时,那么进行refresh_token会获取一个新的access_token,新的超时时间; 。
2. 若access_token未超时,那么进行refresh_token不会改变access_token,但超时时间会刷新,相当于续期access_token.
refresh_token拥有较长的有效期(30天),当refresh_token失效的后,需要用户重新授权。 让appdelegate遵守<wxapidelegate>协议,并实现协议方法onresp: 我们在该方法中接收请求回来的数据,如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
//授权后回调
/*
http请求方式:get
// 根据响应结果中的code获取access_token(要用到申请时得到的appid和appsecret)
https://api.weixin.qq.com/sns/oauth2/access_token?appid=appid&secret=secret&code=code&grant_type=authorization_code
正确返回
{
"access_token":"access_token",
"expires_in":7200,
"refresh_token":"refresh_token",
"openid":"openid",
"scope":"scope",
"unionid":"o6_bmasdasdsad6_2sgvt7hmzopfl"
}
错误返回样例
{"errcode":40029,"errmsg":"invalid code"}
errcode err_ok = 0(用户同意)
err_auth_denied = -4(用户拒绝授权)
err_user_cancel = -2(用户取消)
code 用户换取access_token的code,仅在errcode为0时有效
state 第三方程序发送时用来标识其请求的唯一性的标志,由第三方程序调用sendreq时传入,由微信终端回传,state字符串长度不能超过1k
lang 微信客户端当前语言
country 微信用户当前国家信息
*/
|
1
2
3
4
5
6
7
8
9
10
11
12
|
-(
void
)showlogincontroller:(
bool
)shouldanimation
{
loginviewcontroller *logincontroller=[[loginviewcontroller alloc]initwithnibname:@
"loginviewcontroller"
bundle:nil];
logincontroller.requestforuserinfoblock = ^() {
[[appdelegate sharedinstance] wechatloginbyrequestforuserinfo];
};
basenavigationcontroller *basenavcontroller=[[basenavigationcontroller alloc]initwithrootviewcontroller:logincontroller];
[kappdelegate.window.rootviewcontroller presentviewcontroller:basenavcontroller animated:shouldanimation completion:null];
}
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
// 授权后回调
// appdelegate.m
- (
void
)onresp:(baseresp *)resp {
// 向微信请求授权后,得到响应结果
if
([resp iskindofclass:[sendauthresp
class
]]) {
sendauthresp *temp = (sendauthresp *)resp;
afhttprequestoperationmanager *manager = [afhttprequestoperationmanager manager];
nsstring *accessurlstr = [nsstring stringwithformat:@
"%@/oauth2/access_token?appid=%@&secret=%@&code=%@&grant_type=authorization_code"
, wx_base_url, wxpatient_app_id, wxpatient_app_secret, temp.code];
[manager get:accessurlstr parameters:nil success:^(afhttprequestoperation *operation, id responseobject) {
nslog(@
"请求access的response = %@"
, responseobject);
nsdictionary *accessdict = [nsdictionary dictionarywithdictionary:responseobject];
nsstring *accesstoken = [accessdict objectforkey:wx_access_token];
nsstring *openid = [accessdict objectforkey:wx_open_id];
nsstring *refreshtoken = [accessdict objectforkey:wx_refresh_token];
// 本地持久化,以便access_token的使用、刷新或者持续
if
(accesstoken && ![accesstoken isequaltostring:@
""
] && openid && ![openid isequaltostring:@
""
]) {
[[nsuserdefaults standarduserdefaults] setobject:accesstoken forkey:wx_access_token];
[[nsuserdefaults standarduserdefaults] setobject:openid forkey:wx_open_id];
[[nsuserdefaults standarduserdefaults] setobject:refreshtoken forkey:wx_refresh_token];
[[nsuserdefaults standarduserdefaults] synchronize];
// 命令直接同步到文件里,来避免数据的丢失
}
[self wechatloginbyrequestforuserinfo];
} failure:^(afhttprequestoperation *operation, nserror *error) {
nslog(@
"获取access_token时出错 = %@"
, error);
}];
}
}
|
9、通过code获取access_token 通过上一步获取的code后,请求以下链接获取access_token:
1
|
https:
//api.weixin.qq.com/sns/oauth2/access_token?appid=appid&secret=secret&code=code&grant_type=authorization_code
|
相关代码上面实现onresp:方法,接收返回的响应。 参数说明:
参数 是否必须 说明 appid 是 应用唯一标识,在微信开放平台提交应用审核通过后获得 secret 是 应用密钥appsecret,在微信开放平台提交应用审核通过后获得 code 是 填写第一步获取的code参数 grant_type 是 填authorization_code 返回说明:
1
2
3
4
5
6
7
8
|
{
"access_token"
:
"access_token"
,
// 接口调用凭证
"expires_in"
:7200,
// access_token接口调用凭证超时时间,单位(秒)
"refresh_token"
:
"refresh_token"
,
// 用户刷新access_token
"openid"
:
"openid"
,
// 授权用户唯一标识
"scope"
:
"scope"
,
// 用户授权的作用域,使用逗号(,)分隔
"unionid"
:
"o6_bmasdasdsad6_2sgvt7hmzopfl"
// 只有在用户将公众号绑定到微信开放平台帐号后,才会出现该字段
}
|
错误返回样例:
{"errcode":40029,"errmsg":"invalid code"} 10、获取用户个人信息(unionid机制) 。
1
2
|
http请求方式:get
https:
//api.weixin.qq.com/sns/userinfo?access_token=access_token&openid=openid
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// appdelegate.m
// 获取用户个人信息(unionid机制)
- (
void
)wechatloginbyrequestforuserinfo {
afhttprequestoperationmanager *manager = [afhttprequestoperationmanager manager];
nsstring *accesstoken = [[nsuserdefaults standarduserdefaults] objectforkey:wx_access_token];
nsstring *openid = [[nsuserdefaults standarduserdefaults] objectforkey:wx_open_id];
nsstring *userurlstr = [nsstring stringwithformat:@
"%@/userinfo?access_token=%@&openid=%@"
, wx_base_url, accesstoken, openid];
// 请求用户数据
[manager get:userurlstr parameters:nil success:^(afhttprequestoperation *operation, id responseobject) {
nslog(@
"请求用户信息的response = %@"
, responseobject);
// nsmutabledictionary *userdict = [nsmutabledictionary dictionarywithdictionary:responseobject];
} failure:^(afhttprequestoperation *operation, nserror *error) {
nslog(@
"获取用户信息时出错 = %@"
, error);
}];
}
|
返回的json结果
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
返回的json结果
{
"openid"
:
"openid"
,
"nickname"
:
"nickname"
,
"sex"
:1,
"province"
:
"province"
,
"city"
:
"city"
,
"country"
:
"country"
,
"headimgurl"
:
"http://wx.qlogo.cn/mmopen/g3monuztnhkdmzicilibx6iafqac56vxlsufpb6n5wksyvy0chqkkiajsgq1dzutogvllrhjberqq4emsv84eavhiaiceqxibjxcfhe/0"
,
"privilege"
:[
"privilege1"
,
"privilege2"
],
"unionid"
:
" o6_bmasdasdsad6_2sgvt7hmzopfl"
}
返回错误的json事例
{
"errcode"
:40003,
"errmsg"
:
"invalid openid"
}
|
11、最后 做到上面一步就应该得到返回微信的基本信息,然后根据你公司后台的基本需求去实现授权后如何登录app. 资料
1
2
3
4
5
6
7
8
9
10
|
// access_token openid refresh_token unionid
#define wxdoctor_app_id @"wxd1931d4a0e462***" // 注册微信时的appid
#define wxdoctor_app_secret @"d0dd6b58da42cbc4f4b715c70e65c***" // 注册时得到的appsecret
#define wxpatient_app_id @"wxbd02bfeea4292***"
#define wxpatient_app_secret @"4a788217f363358276309ab655707***"
#define wx_access_token @"access_token"
#define wx_open_id @"openid"
#define wx_refresh_token @"refresh_token"
#define wx_union_id @"unionid"
#define wx_base_url @"https://api.weixin.qq.com/sns"
|
12.这是我司需求的做法
1.首先获取到微信的openid,然后通过openid去后台数据库查询该微信的openid有没有绑定好的手机号. 2.如果没有绑定,首相第一步就是将微信用户的头像、昵称等等基本信息添加到数据库;然后通过手机获取验证码;最后绑定手机号。然后就登录app. 3.如果有,那么后台就返回一个手机号,然后通过手机登录app. 。
以上就是本文的全部内容,希望对大家的学习有所帮助.
最后此篇关于iOS微信第三方登录实现的文章就讲到这里了,如果你想了解更多关于iOS微信第三方登录实现的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
当有人使用微信(微信)分享我的一款游戏(用 JavaScript 制作)时,我正在使用 WeixinJSBridge 修改分享参数。 下面的代码位于一个很大的 JavaScript 文件(超过 250
我转微信了padplus来自wechaty-puppet-puppeteer的傀儡并发现它比 wechaty-puppet-puppeteer 更频繁地停止.即,wechaty-puppet-pupp
微信小程序一出,立马炸开了锅,都去搭建自己的开发环境,我这里也来尝尝先,之前发了一篇文章,有人问demo怎么导入? demo源代码(来自网络) 百度: https://pan.baidu.com
微信小程序可谓是今天最火的一个名词了,一经出现真是轰炸了整个开发人员,当然很多app开发人员有了一个担心,微信小程序的到来会不会给移动端app带来一个寒冬,身为一个android开发者我是不相信的,
memcache缓存存储用户信息7000秒 ? 1
微信开发生成带参数的二维码的讲解 在微信公众号平台开发者那里,在“账号管理”那里,有一项功能是“生成带参数的二维码”,通过这儿生成的二维码,只要通过微信扫一扫之后,会把事件自动推送到微信公众号上
某日,一同学给小的发了 Github 源码,说是可以轻松查到删除自己的微信好友,于是就开始了作死之路。 Github 源码请看:0x5e/wechat-deleted-friends 前言
近段时间山西的连续降雨,不少的城市都出现了洪灾,救灾物资匮乏,不少明星及爱心人士都纷纷向山西捐款,那么目前来说山西捐款的通道有哪些呢?在支付宝,微信上如何给山西捐款呢?下面就和小编一起来看看山西捐款
一.集成支付宝支付 支付宝集成官方教程 https://docs.open.alipay.com/204/105295/ 支付宝集成官方demo https://docs.o
一.越来越多的app增加第三方的功能,可能app有不同的页面但调用相同的支付方式,例如界面如下: 这两个页面都会使用第三方支付支付:(微信,支付宝,银联)如果在每一个页面都直接调用第三方支付的
关闭。这个问题需要多问focused 。目前不接受答案。 想要改进此问题吗?更新问题,使其仅关注一个问题 editing this post . 已关闭 8 年前。 Improve this ques
我安装了一个虚假的位置应用程序并将我的位置设置为不同的位置。然后打开谷歌地图和微信应用, Google map 将我的位置显示为我设置的(假的) 微信应用忽略虚假位置并检测真实位置(如何?) 然后我想
前言 支付分APP支付、H5支付、扫码支付等。app支付一般在app中使用,并且需要集成相应的支付SDK,H5支付多用于网页。如果你的APP不想集成支付SDK,又想实现支付功能,你可以在项目中使用
最近一直在调用微信的api,却发现一直调用不成功,纠结了好久,各方面找教程,找官方,官方里的文档也只是写得很模糊,说是按三步走。 1、申请app_id 2、填写包名3、 获取程序签
和平精英QQ/微信 每日登陆抽奖1~188Q币 活动两个QQ和微信都可以 每天登陆游戏并且玩一局 然后可以去活动界面抽奖Q币 QQ端(需玩一局):http://t.cn/Ai1Jn7Tz
目前,当我使用带有 Link 插件的 TinyMce4.5.1 时。即使我将属性 link_list 设置为 false,我也找不到隐藏默认 URL 选项(#top、#bottom)的方法。除了破
实际上,我正在尝试使用微信为我的 Web 应用程序设置 OAuth 登录。所以,我在微信上创建了一个帐户,并使用了一个测试帐户来无限访问。 因此,在测试帐户配置中,我已成功验证来自微信的 token
不管是腾讯还是新浪,查看他们的API,PHP都是有完整的接口,但对C#支持似乎都不是那么完善,都没有,腾讯是完全没有,新浪是提供第三方的,而且后期还不一定升级,NND,用第三方的动辄就一个类库,各种
和平精英QQ/微信 每日登陆抽奖1~188Q币/现金红包 活动两个QQ和微信都可以 QQ的登录游戏和分享好友即可获得三次抽奖次数 微信登录游戏就可以抽奖 如果没有反应就分享链接出去从分享的链接进
我想做什么 我正在尝试将我自己的基于 WebGL 的引擎移植到微信小游戏环境,目前只是尝试让 WebGL 上下文被粉红色清除: 有什么问题 我已经按照腾讯提供的示例以及 ThreeJS 示例来设置游戏
我是一名优秀的程序员,十分优秀!