Is it possible to run iOS app on specific IP address.I have an Apple Enterprise Account and I want to distribute an app with an organization and also I want to run it on a specific IP address. For example, in my app I have a user authentication process. I want to authenticate only those users who come from specific IP address other than that user will not have to authenticate.
Asked
Active
Viewed 73 times
0
-
Is the authentication in-app only? Do you have a server/backend that handles auth? Do you have a way to stop that action quickly if the IP address ever changes (such as an inevitable transition to ipv6 in the future)? – Ryan Collins Nov 21 '16 at 14:31
-
You can do the authorization in your back-end server. But IP address maybe change frequently, especially when a device runs on Edge network. – Nickolas Nov 21 '16 at 17:15
-
@RyanCollins Yes we using a backend web api server to authenticate a user. I have no idea about IP address changing. I simply hit this url http://Local-Server/AuthenticateUser and get JSON response. – Usman Javed Nov 22 '16 at 05:38