Thank you Taifun for your response.
Web component use Post Text to send username/password and that work. With Web.GotText event I receive response from server in JSON format about user data.
That user data is not important - it's only confirmation that user exist.
After that, I need to send ANOTHER request , GET with another url. Like response, server send html data.
This GET need to be after POST and I didn't find good solution for that - Web.GotText is a event I don't know to distinguish two same event's with different url's (I try to compare url's after catch a event to do diffeerent tasks )
When I receive html , after GET, server know that user is logged (that session receive special cookie) and user may continue to use site like logged user.
I check this story with Postman and make some Python code (on PC) and play with components and find that same session with received cookie is a key for this.
In Python ,I need to use Selenium to have possiblityto control webdriver , to send POST and after that GET and show a page.
If I save response on some way , and open it with webview (I'm not made that yet in Thunkable because of distinguish events on different requests), I haven't same session and cookie like with Web component.
I read few solutions to send POST data with webviewer generally in Android
https://book2s.com/java/api/android/webkit/webview/posturl-2.htmlbut there is use some depreceated library "
EncodingUtils" ... In this moment I haven't any idea :) for further analyze except to put POST request , on some way , on webview component.
Thank you one more time for your efforts