[iOS微博项目 - 2.5] - 封装授权和用户信息读写业务
- // 授权信息
- #define HVWAppKey @"3942775926";
- #define HVWAppSecret @"cc577953b2aa3aa8ea220fd15775ea35"
- #define HVWGrantType @"authorization_code"
- #define HVWRedirecgURI @"http://www.cnblogs.com/hellovoidworld/"
- //
- // HVWControllerTool.m
- // HVWWeibo
- //
- // Created by hellovoidworld on 15/2/5.
- // Copyright (c) 2015年 hellovoidworld. All rights reserved.
- //
- #import "HVWControllerTool.h"
- #import "HVWOAuthViewController.h"
- #import "HVWTabBarViewController.h"
- #import "HVWNewFeatureViewController.h"
- @implementation HVWControllerTool
- + (void) chooseRootViewController {
- // 获得主窗口
- UIWindow *window = [UIApplication sharedApplication].keyWindow;
- // 检查是否已有登陆账号
- NSString *docPath = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) lastObject];
- NSString *filePath = [docPath stringByAppendingPathComponent:@"accountInfo.plist"];
- NSDictionary *accountInfo = [NSDictionary dictionaryWithContentsOfFile:filePath];
- if (!accountInfo) { // 如果不存在登陆账号,要先进行授权
- window.rootViewController = [[HVWOAuthViewController alloc] init];
- } else {
- /** 新版本特性 */
- // app现在的版本
- // 由于使用的时Core Foundation的东西,需要桥接
- NSString *versionKey = (__bridge NSString*) kCFBundleVersionKey;
- NSDictionary *infoDic = [[NSBundle mainBundle] infoDictionary];
- NSString *currentVersion = [infoDic objectForKey:versionKey];
- // 上次使用的版本
- NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
- NSString *lastVersion = [defaults stringForKey:versionKey];
- // 如果版本变动了,存储新的版本号并启动新版本特性图
- if (![lastVersion isEqualToString:currentVersion]) {
- // 存储
- [defaults setObject:currentVersion forKey:versionKey];
- [defaults synchronize];
- // 开启app显示新特性
- HVWNewFeatureViewController *newFeatureVC = [[HVWNewFeatureViewController alloc] init];
- window.rootViewController = newFeatureVC;
- } else {
- // 创建根控制器
- HVWTabBarViewController *tabVC = [[HVWTabBarViewController alloc] init];
- window.rootViewController = tabVC;
- }
- }
- }
- @end
- - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
- // Override point for customization after application launch.
- // 启动后显示状态栏
- UIApplication *app = [UIApplication sharedApplication];
- app.statusBarHidden = NO;
- // 设置window
- self.window = [[UIWindow alloc] init];
- self.window.frame = [UIScreen mainScreen].bounds;
- [self.window makeKeyAndVisible];
- // 设置根控制器
- [HVWControllerTool chooseRootViewController];
- return YES;
- }
- /** 根据access_code获取access_token */
- - (void) accessTokenWithAccessCode:(NSString *) accessCode {
- // 创建AFN的http操作请求管理者
- AFHTTPRequestOperationManager *manager = [AFHTTPRequestOperationManager manager];
- // 参数设置
- NSMutableDictionary *param = [NSMutableDictionary dictionary];
- param[@"client_id"] = HVWAppKey;
- param[@"client_secret"] = HVWAppSecret;
- param[@"grant_type"] = HVWGrantType;
- param[@"code"] = accessCode;
- param[@"redirect_uri"] = HVWRedirecgURI;
- // 发送请求
- [manager POST:@"https://api.weibo.com/oauth2/access_token" parameters:param success:^(AFHTTPRequestOperation *operation, NSDictionary *accountInfo) {
- [MBProgressHUD hideHUD];
- // 返回的是用户信息字典
- // 存储用户信息,包括access_token到沙盒中
- NSString *docPath = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) lastObject];
- NSString *filePath = [docPath stringByAppendingPathComponent:@"accountInfo.plist"];
- [accountInfo writeToFile:filePath atomically:YES];
- // 设置根控制器
- [HVWControllerTool chooseRootViewController];
- } failure:^(AFHTTPRequestOperation *operation, NSError *error) {
- [MBProgressHUD hideHUD];
- HVWLog(@"请求access_token失败 ----> %@", error);
- }];
- }
- 封装应有属性
- 处理服务器发来的json数据的初始化方法
- 用来存储用户信息到文件的归档重写方法
- //
- // HVWAccountInfo.h
- // HVWWeibo
- //
- // Created by hellovoidworld on 15/2/5.
- // Copyright (c) 2015年 hellovoidworld. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- // 注意遵守NSCoding协议
- @interface HVWAccountInfo : NSObject <NSCoding>
- /** 访问令牌 */
- @property(nonatomic, strong) NSString *access_token;
- /** access_token的有效期,单位:秒 */
- @property(nonatomic, copy) NSString *expires_in;
- /** 过期时间,自己计算存储 */
- @property(nonatomic, strong) NSDate *expires_time;
- /** 当前授权用户的UID */
- @property(nonatomic, copy) NSString *uid;
- /** 自定义初始化方法,这里是用来初始化服务器发来的json数据的 */
- + (instancetype) accountInfoWithDictionary:(NSDictionary *) dict;
- @end
- //
- // HVWAccountInfo.m
- // HVWWeibo
- //
- // Created by hellovoidworld on 15/2/5.
- // Copyright (c) 2015年 hellovoidworld. All rights reserved.
- //
- #import "HVWAccountInfo.h"
- @implementation HVWAccountInfo
- /** 自定义初始化方法,这里是用来初始化服务器发来的json数据的 */
- + (instancetype) accountInfoWithDictionary:(NSDictionary *) dict {
- HVWAccountInfo *accountInfo = [[self alloc] init];
- accountInfo.access_token = dict[@"access_token"];
- accountInfo.expires_in = dict[@"expires_in"];
- NSDate *now = [NSDate date];
- accountInfo.expires_time = [now dateByAddingTimeInterval:accountInfo.expires_in.doubleValue];
- accountInfo.uid = dict[@"uid"];
- return accountInfo;
- }
- #pragma mark - NSCoding
- /** 从文件解析对象调用 */
- - (id)initWithCoder:(NSCoder *)aDecoder {
- if (self = [super init]) {
- self.access_token = [aDecoder decodeObjectForKey:@"access_token"];
- self.expires_in = [aDecoder decodeObjectForKey:@"expires_in"];
- self.expires_time = [aDecoder decodeObjectForKey:@"expires_time"];
- self.uid = [aDecoder decodeObjectForKey:@"uid"];
- }
- return self;
- }
- /** 把对象写入文件调用 */
- - (void)encodeWithCoder:(NSCoder *)aCoder {
- [aCoder encodeObject:self.access_token forKey:@"access_token"];
- [aCoder encodeObject:self.expires_in forKey:@"expires_in"];
- [aCoder encodeObject:self.expires_time forKey:@"expires_time"];
- [aCoder encodeObject:self.uid forKey:@"uid"];
- }
- @end
- 存储文件名:accountInfo.data,不是之前的accountInfo.plist
- 日期比较千万不要搞错
- //
- // HVWAccountInfoTool.m
- // HVWWeibo
- //
- // Created by hellovoidworld on 15/2/5.
- // Copyright (c) 2015年 hellovoidworld. All rights reserved.
- //
- #import "HVWAccountInfoTool.h"
- #define accountInfoPath [[NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) lastObject] stringByAppendingPathComponent:@"accountInfo.data"]
- @implementation HVWAccountInfoTool
- /** 从文件获取accountInfo */
- + (HVWAccountInfo *) accountInfo {
- HVWAccountInfo *accountInfo = [NSKeyedUnarchiver unarchiveObjectWithData:[NSData dataWithContentsOfFile:accountInfoPath]];
- // 需要判断是否过期
- NSDate *now = [NSDate date];
- if ([now compare:accountInfo.expires_time] != NSOrderedAscending) { // now->expires_data 非升序, 已经过期
- accountInfo = nil;
- }
- return accountInfo;
- }
- /** 存储accountInfo到文件 */
- + (void) saveAccountInfo:(HVWAccountInfo *) accountInfo {
- [NSKeyedArchiver archiveRootObject:accountInfo toFile:accountInfoPath];
- }
- @end
- // HVWOAuthViewController.m
- /** 根据access_code获取access_token */
- - (void) accessTokenWithAccessCode:(NSString *) accessCode {
- // 创建AFN的http操作请求管理者
- AFHTTPRequestOperationManager *manager = [AFHTTPRequestOperationManager manager];
- // 参数设置
- NSMutableDictionary *param = [NSMutableDictionary dictionary];
- param[@"client_id"] = HVWAppKey;
- param[@"client_secret"] = HVWAppSecret;
- param[@"grant_type"] = HVWGrantType;
- param[@"code"] = accessCode;
- param[@"redirect_uri"] = HVWRedirecgURI;
- // 发送请求
- [manager POST:@"https://api.weibo.com/oauth2/access_token" parameters:param success:^(AFHTTPRequestOperation *operation, NSDictionary *responseObject) {
- [MBProgressHUD hideHUD];
- // 返回的是用户信息字典
- // 存储用户信息,包括access_token到沙盒中
- HVWAccountInfo *accountInfo = [HVWAccountInfo accountInfoWithDictionary:responseObject];
- [HVWAccountInfoTool saveAccountInfo:accountInfo];
- // 设置根控制器
- [HVWControllerTool chooseRootViewController];
- } failure:^(AFHTTPRequestOperation *operation, NSError *error) {
- [MBProgressHUD hideHUD];
- HVWLog(@"请求access_token失败 ----> %@", error);
- }];
- }
- + (void) chooseRootViewController {
- // 获得主窗口
- UIWindow *window = [UIApplication sharedApplication].keyWindow;
- // 检查是否已有登陆账号
- HVWAccountInfo *accountInfo = [HVWAccountInfoTool accountInfo];
- if (!accountInfo) { // 如果不存在登陆账号,要先进行授权
- window.rootViewController = [[HVWOAuthViewController alloc] init];
- } else {
- /** 新版本特性 */
- // app现在的版本
- // 由于使用的时Core Foundation的东西,需要桥接
- NSString *versionKey = (__bridge NSString*) kCFBundleVersionKey;
- NSDictionary *infoDic = [[NSBundle mainBundle] infoDictionary];
- NSString *currentVersion = [infoDic objectForKey:versionKey];
- // 上次使用的版本
- NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
- NSString *lastVersion = [defaults stringForKey:versionKey];
- // 如果版本变动了,存储新的版本号并启动新版本特性图
- if (![lastVersion isEqualToString:currentVersion]) {
- // 存储
- [defaults setObject:currentVersion forKey:versionKey];
- [defaults synchronize];
- // 开启app显示新特性
- HVWNewFeatureViewController *newFeatureVC = [[HVWNewFeatureViewController alloc] init];
- window.rootViewController = newFeatureVC;
- } else {
- // 创建根控制器
- HVWTabBarViewController *tabVC = [[HVWTabBarViewController alloc] init];
- window.rootViewController = tabVC;
- }
- }
- }
[iOS微博项目 - 2.5] - 封装授权和用户信息读写业务的更多相关文章
- [iOS微博项目 - 3.5] - 封装业务
github: https://github.com/hellovoidworld/HVWWeibo A.封装微博业务 1.需求 把微博相关业务(读取.写微博) 界面控制器不需要知道微博操作细节( ...
- [iOS微博项目 - 2.0] - OAuth授权3步
A.概念 OAUTH协议为用户资源的授权提供了一个安全的.开放而又简易的标准.与以往的授权方式不同之处是OAUTH的授权不会使第三方触及到用户的帐号信息(如用户名与密码),即第三方无需使用用 ...
- [iOS微博项目 - 3.3] - 封装网络请求
github: https://github.com/hellovoidworld/HVWWeibo A.封装网络请求 1.需求 为了避免代码冗余和对于AFN框架的多处使用导致耦合性太强,所以把网 ...
- [iOS微博项目 - 2.2] - 在app中获取授权
github: https://github.com/hellovoidworld/HVWWeibo A.发送授权请求 1.使用UIWebView加载请求页面 自定义一个继承UIViewContr ...
- [iOS微博项目 - 3.4] - 获取用户信息
github: https://github.com/hellovoidworld/HVWWeibo A.获取用户信息 1.需求 获取用户信息并储存 把用户昵称显示在“首页”界面导航栏的标题上 ...
- [iOS微博项目 - 2.4] - 重新安排app启动步骤
github: https://github.com/hellovoidworld/HVWWeibo A.app启动步骤 1.加入了授权步骤之后,最先要判断app内是否已经登陆了账号 2.在程序启 ...
- [iOS微博项目 - 4.3] - 设置每条微博边框样式
github: https://github.com/hellovoidworld/HVWWeibo A.设置每条微博边框样式 1.需求 不需要分割线 每个微博之间留有一定的间隙 2.思路 直接设 ...
- 【Python项目】爬取新浪微博个人用户信息页
微博用户信息爬虫 项目链接:https://github.com/RealIvyWong/WeiboCrawler/tree/master/WeiboUserInfoCrawler 1 实现功能 这个 ...
- php微信网页授权获取用户信息
配置回调域名: 1. 引导用户进入授权页面同意授权,获取code 2. 通过code换取网页授权access_token(与基础支持中的access_token不同) 3. 如果需要,开发者可以刷新网 ...
随机推荐
- ADO与ADO.NET的区别与介绍
1. ADO与ADO.NET简介ADO与ADO.NET既有相似也有区别,他们都能够编写对数据库服务器中的数据进行访问和操作的应用程序,并且易于使用.高速度.低内存支出和占用磁盘空间较少,支持用于建立基 ...
- 旧书重温:0day2【2】 实验:三种获取kernel32.dll基址的方法
0x01 找kernel32基地址的方法一般有三种: 暴力搜索法.异常处理链表搜索法.PEB法. 0x02 基本原理 暴力搜索法是最早的动态查找kernel32基地址的方法.它的原理是几乎所有的win ...
- (二)win7下用Intelij IDEA 远程调试spark standalone 集群
关于这个spark的环境搭建了好久,踩了一堆坑,今天 环境: WIN7笔记本 spark 集群(4个虚拟机搭建的) Intelij IDEA15 scala-2.10.4 java-1.7.0 版本 ...
- XE7 - 升级及初步使用
春节没抢到回家的票,正好有时间把Delphi2010升级到了XE7. 用了快一个月了,今天算是补记. 安装包用了lsuper大侠整理的lsuper.XE7.Update1.v10.1.拜谢!比较顺利的 ...
- SmartGit STUDY 2
The Index The Index is an intermediate cache for preparing a commit. With SmartGit, you can make hea ...
- 简单地Android中图片的三级缓存机制
我们不能每次加载图片的时候都让用户从网络上下载,这样不仅浪费流量又会影响用户体验,所以Android中引入了图片的缓存这一操作机制. 原理: 首先根据图片的网络地址在网络上下载图片,将图片先缓存到内存 ...
- ylb:表的结构的修改和基本约束
ylbtech-SQL Server:SQL Server-表的结构的修改和基本约束 SQL Server 表的结构的修改和基本约束. 1,表的结构的修改和基本约束返回顶部 use master go ...
- mysql Access denied for user \'root\'@\'localhost\'”解决办法总结,下面我们对常见的出现的一些错误代码进行分析并给出解决办法,有需要的朋友可参考一下。
mysql Access denied for user \'root\'@\'localhost\'”解决办法总结,下面我们对常见的出现的一些错误代码进行分析并给出解决办法,有需要的朋友可参考一下. ...
- bjfu1281
思路挺简单的,但因为需要处理大数,所以就比较耗代码了. /* * Author : ben */ #include <cstdio> #include <cstdlib> #i ...
- 【Linux】一个简单的线程创建和同步的例子
最近很多精力在Linux上,今天简单看了一下Linux上的线程和同步,其实不管windows还是Linux,OS层面的很多原理和概念都是相同的,很多windows之上的经验和概念完全可以移植到Linu ...