Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Post data with Chrome Custom Tabs

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

like image 210
eugeneek Avatar asked Jan 13 '16 06:01

eugeneek


1 Answers

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.

like image 185
ade Avatar answered Nov 06 '22 11:11

ade