支持中心 > 热门问题

读取身份图片AppKey失败, 请确认图片与BundleID

提交于: 2018-03-19 15:33:32

按照 http://baichuan.taobao.com/docs/doc.htm?spm=a3c0d.7629140.0.0.HtdkDv&treeId=129&articleId=105648&docType=1

 

cocoaPods 集成

URLScheme: tbopen{AppKey} .problem

配置 info.plist

 

 

 

<key>LSApplicationQueriesSchemes</key>

    <array>

        <string>tmall</string>

 

 

        <string>tbopen</string>

    </array>

 

 

<key>NSAppTransportSecurity</key>

    <dict>

        <key>NSAllowsArbitraryLoads</key>

        <true/>

    </dict>


APP

 

 

 

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {

    // 百川平台基础SDK初始化,加载并初始化各个业务能力插件

    [[AlibcTradeSDK sharedInstance] asyncInitWithSuccess:^{

        

    } .problem failure:^(NSError *error) {

        NSLog(@"Init failed: %@", error.description);

    } .problem ];


报标题的错误,但AppKey和BundleID在百川后台肯定是匹配的

 

已经知道问题了,用cocoaPods集成,没有info.plist,认为是最新的v5,实际上是v4的验证图

 

Q: 无**t - 2018-03-19 15:33:32


 


 

返回
顶部