From 2379619e94151d158366c28f3d957eae821e9de9 Mon Sep 17 00:00:00 2001 From: developer Date: Tue, 3 Mar 2020 15:48:55 +0800 Subject: [PATCH] fix:apiprefix --- Podfile | 4 +--- demo/AppDelegate.m | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/Podfile b/Podfile index 7560ae1..e6a4334 100644 --- a/Podfile +++ b/Podfile @@ -1,6 +1,4 @@ platform :ios, "9.0" -source 'https://git.finogeeks.com/cocoapods/FinPods' - source 'https://github.com/CocoaPods/Specs.git' @@ -8,7 +6,7 @@ source 'https://github.com/CocoaPods/Specs.git' inhibit_all_warnings! target "demo" do - pod 'FinApplet', '2.0.177' + pod 'FinApplet', '2.0.191' end diff --git a/demo/AppDelegate.m b/demo/AppDelegate.m index 68f2249..c7813fb 100644 --- a/demo/AppDelegate.m +++ b/demo/AppDelegate.m @@ -24,7 +24,7 @@ NSString *appKey = @"22LyZEib0gLTQdU3MUauAWQrT5jdkwBnjD/4Rw9r+4kA"; FATConfig *config = [FATConfig configWithAppSecret:@"1a90cee1773badee" appKey:appKey]; config.apiServer = @"https://mp.finogeeks.com"; - config.apiPrefix = @"/api/v1"; + config.apiPrefix = @"/api/v1/mop"; [[FATClient sharedClient] initWithConfig:config error:nil];