I am using Ngrok and swapping out localhost on all my server connect api calls with my Ngrok domain pointed at my server.
Example: https://Ngrokdomainhere/api/users/login
I am doing this because Android requires https instead of http for API
(You have to pay for the constant domain)
Almost everything is working great. My android app is launching in the emulator and data from my DB is loading. Except one thing:
My login action is not working. My best guess is that it has something to do with the security provider.
With Ngrok the login doesn’t work on iOS either but all the other API actions do.
So it is either a CORS or security provider issue.
Does anybody know how to get the security login action to work while using this method?