Does anyone have any experience passing JSON information to a WebView? There is a third party service my client is utilizing and the app I'm building requires the passing of login credentials to this third party interface. They seem to use JSON, at least that is what they are telling me, for their login form. I have seen a lot of posts talking about pulling JSON objects from a WebRequest but I have not seen anything on posting those objects to a WebView.
Normally with a form I would just send the credentials to the form submit url but with these JSON forms it seems to require some kind of special object coding.
Here is an example of the form header.
<
form id="login" method="post" onsubmit="return setActionAndVerify()" action="login">
Any pointers would be helpful as I have never dealt with JSON let alone attempted to pass form data to something using JSON.