1,将聚合数据SDK(JuheApis.framework)添加到你的程序中来,SDK依赖的包包括:
2,在聚合SDK Framework的JHSDKAPIPath.h文件中找到快递查询接口宏,以及字典参数
/*** 全国加油站[实时油价] ***/
/**
@brief 全国加油站[实时油价] -> 按城市检索加油站
@param city string 必填 城市名urlencode utf8;
@param page int 非必填 页数,默认1
*/
#define kJHAPIS_LIFE_OIL_REGION @"juhe.apis.oil.region" //1、按城市检索加油站
/**
@brief 全国加油站[实时油价] -> 检索周边加油站
@param lon double 必填 经纬(如:121.538123)
@param lat double 必填 纬度(如:31.677132)
@param r int 非必填 搜索范围,单位M,默认3000,最大10000
@param page int 非必填 页数,默认1
*/
#define kJHAPIS_LIFE_OIL_LOCAL @"juhe.apis.oil.local" //2、检索周边加油站
3,快递查询接口在程序中调用方法(将ViewController.m改为.mm)
#import "ViewController.h"
#import <JuheApis/JuheAPI.h>
#import <JuheApis/JHOpenidSupplier.h>#import <JuheApis/JHSDKAPIPath.h>@interface ViewController ()@end@implementation ViewController- (void)viewDidLoad {[super viewDidLoad];// Do any additional setup after loading the view,typically from a nib.[[JHOpenidSupplier shareSupplier] registerJuheAPIByOpenId:@"申请到的OpenId“];UIButton* beginBtn=[UIButton buttonWithType:UIButtonTypeSystem];beginBtn.frame=CGRectMake(20,111,280,40);[beginBtn setTitle:@"开始" forState:UIControlStateNormal];[beginBtn setTitleColor:[UIColor darkGrayColor] forState:UIControlStateNormal];[beginBtn addTarget:self action:@selector(doTestAction) forControlEvents:UIControlEventTouchUpInside];[beginBtn setBackgroundImage:[UIImage imageNamed:@"button5"] forState:UIControlStateNormal];[self.view addSubview:beginBtn];}- (void)doTestAction{/* 1、按城市检索加油站 */[self test :kJHAPIS_LIFE_OIL_REGION parameters:@{@"city":@"苏州",@"page":@"1" } ] ;
/* 2、检索周边加油站 */
[self test :kJHAPIS_LIFE_OIL_LOCAL parameters:@{@"lon":@"121.538123",@"lat":@"31.677132" } ] ;
}
- (void)test:(NSString *)path parameters:(NSDictionary *)parameters{
JuheAPI *juheapi = [JuheAPI shareJuheApi];
[juheapi executeWorkWithAPI:path
parameters:parameters
success:^(id responSEObject){
if ([[parameters objectForKey:@"dtype"] isEqualToString:@"xml"]) {
NSLog(@"***xml*** \n %@",responSEObject);
}else{
int error_code = [[responSEObject objectForKey:@"error_code"] intValue];
if (!error_code) {
NSLog(@" %@",responSEObject);
}else{
NSLog(@" %@",responSEObject);
}
}
} failure:^(NSError *error) {
NSLog(@"error: %@",error.description);
}];
}
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
@end
4,全国加油站[实时油价]接口返回数据说明以及错误码说明4.1、按城市检索加油站
API : juhe.apis.oil.region (宏:kJHAPIS_LIFE_OIL_REGION)
返回字段 :
4.2、检索周边加油站API : juhe.apis.oil.local (宏:kJHAPIS_LIFE_OIL_LOCAL)
4.3. 全国加油站[实时油价] 错误码
5,更多聚合数据SDK接口,访问这里: http://www.juhe.cn/juhesdk/idocs
原文链接:https://www.f2er.com/javaschema/285274.html