10

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

DJo
  • 2,133
  • 4
  • 30
  • 46
eugeneek
  • 812
  • 9
  • 24
  • Currently, CustomTabs only open URIs. – Nikola Despotoski Jan 14 '16 at 15:22
  • Possible duplicate of [How can I open android browser with specified POST parameters?](https://stackoverflow.com/questions/4119827/how-can-i-open-android-browser-with-specified-post-parameters) – mooga Apr 11 '18 at 16:06

1 Answers1

2

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.

Community
  • 1
  • 1
ade
  • 4,056
  • 1
  • 20
  • 25