iOS get Configuration Profiles that are installed

霸气de小男生 提交于 2019-12-17 09:32:44

问题


The app I am currently working on requires the use of Configuration Profiles in order to connect to a server to download XML. The certificates are distributed in the form of .p12 files, and they can be installed in the settings app in the iPhone like the bottom-left image.

The problem is that all over the internet people are saying that this is impossible.

HOWEVER, Junos Pulse can do this(bottom-right image).

It is only reading the Configuration Profiles which is exactly what I need.

I did not have to install them into the Junos Pulse app. Adding them to the system, and launching the app is enough for my profiles to be recognized.

Thanks for your help :)


回答1:


You won't. Your application is sandboxed, read the iOS App Programming Guide. Developer profiles are not public information for applications to access.




回答2:


The reason the Junos app is able to do this has been explained in a post in the Apple Developer Forums.

Original Question: https://devforums.apple.com/message/660579#660579

Explanation about Junos app: https://devforums.apple.com/message/351326#351326

To sum it up, access to this is not provided in the SDK and is by invitation from Apple only.




回答3:


I am not sure what you are trying to accomplish, but the iOS Keychain services allows you to store and retrieve certificates and keys in a (supposedly) secure way. I have not used the API for other than storing passwords, so I cannot say how it works with certificates, but according to the docs it might work for you.

In particular, have a look at the SecItemCopyMatching function.



来源:https://stackoverflow.com/questions/10344814/ios-get-configuration-profiles-that-are-installed

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!