CredStore Perform Query error

前端 未结 12 1676
北荒
北荒 2020-11-27 12:16

I am running into an issue while doing API calls to my apps backend, every connection now prompts with

CredStore - performQuery - Error copying matching cred         


        
12条回答
  •  甜味超标
    2020-11-27 12:57

    This is transport error, let's add transport permission like this in plist file:

    NSAppTransportSecurity
        
            NSAllowsArbitraryLoads
            
        
    

    Be careful as that enables connection to any server from your app. Read more on App Transport Security before proceeding. See comment by @kezi

提交回复
热议问题