How do you load a URL with post data using the "POST" method into GeckoView? On the Android WebView I can do this:
view.postUrl(url, postParams.getBytes())
I have tried this with GeckoView but it doesn't work:
session.load(new Loader().data(postParams.getBytes(), null).uri(url));