Is there a way to connect xamarin login page to my website in Webview?

Viewed 798

I made a login form page in xamarin crossplatform then i want the value of entry like user and password will connect to my website in webview

Is there a way to do that?

1 Answers

Yes, you can. Follow this article Customizing a WebView to know how to use the WebView in scenarios where you want to return json information ( for example: in your case you want to return the user id of the logged in user and other data maybe).

Related