0
I have a problem with my project in Ionic, below follow the versions.
Ionic: 4.1.2
ASP.NET: 2.1.502
A little about my project...
It has a route in the application where it generates a Webview
(iframe) where this webview has a module where it is possible to register and log in.
let iframe = document.createElement('iframe');
iframe.src = src;
$('page-reservations ion-content .scroll-content').html(iframe.outerHTML)
Image of the Code
Result Image
It works in the browser (run broswer
), in the apparatus (android
and ios
), but in specific in IOS emulator (Apple) just not working the login part.
The problem of not being able to log in was found, is that in IOS emulator is not keeping the Id da Session generated in the ASP.NET
changes each request, making the user unable to access his account, remembering that this problem is occurring only in the IOS emulator (Apple), real device works normally.
Works on iPhone, works on Android Emulator, works on Browser, and the app works on Android as well.
I would like more information and to see if anyone has ever come across this situation.
- Is there any justification for this occurring only in the emulator IOS?
- Is there any way to solve this problem?