Is it possible to make requests in android applications through the web with php?

1

I'm working with php and initially I was curious about one thing, I'm needing to make a request (particularly a login) in an android application more with my platform in php on the web, is there any service that allows me to emulate an apk in one server and make requests on it?

    
asked by anonymous 12.07.2017 / 22:39

1 answer

2

Unfortunately this is not possible, because you are working with a completely different system than a mobile system.

What you can do is emulate the android in an application in the OS, within this android you can emulate the application and then yes you might be able to get other systems to interact with it through scripts inside the emulator itself.

But emulate an APK over the web does not.

    
12.07.2017 / 22:49