Is there a way to send post data with url with Custom Chrome Tabs? Like it was with WebView:
webView.postUrl(String url, byte[] postData)
Cannot find any about it in documentation or in examples
Is there a way to send post data with url with Custom Chrome Tabs? Like it was with WebView:
webView.postUrl(String url, byte[] postData)
Cannot find any about it in documentation or in examples
That is not possible. You may be better off trying the approach described here: https://stackoverflow.com/a/30805339/97238 if you want to send a POST request.