I am using flutter_inappwebview to load https URL in flutter. I am passing accessToken and JWT token with the URL which is length around 2300 characters. Without token's the URL is opening fine. But for complete URL it is giving SSL error. Unfortunately I can not share URL (Restrictions). My question is for URL is there any limit length for URL or am I missing something. Any help would be appreciated.
return InAppWebView(
initialUrlRequest: URLRequest(url: Uri.parse(deCodedURL)),
onReceivedServerTrustAuthRequest: (controller, challenge) async {
return ServerTrustAuthResponse(action: ServerTrustAuthResponseAction.PROCEED);
},
);
[ERROR:ssl_client_socket_impl.cc(959)] handshake failed; returned -1, SSL error code 1, net_error -202