You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when calling a URL and placing a cookie header in the webview scaffold, the request does not seem to pick up the provided header.
using: flutter_webview_plugin: ^0.3.4
When i am setting up a classic http.get command it works perfectly fine.
var headers = {'Cookie':this.cookie};
final response =await http.get(
'https://someurl.com',
headers: headers);
So the cookie seems to be fine, the header declaration also.
I could not find a more comprehensive documentation on this. Maybe I am missing something.
Thanks!
The text was updated successfully, but these errors were encountered:
Hi,
when calling a URL and placing a cookie header in the webview scaffold, the request does not seem to pick up the provided header.
using: flutter_webview_plugin: ^0.3.4
When i am setting up a classic http.get command it works perfectly fine.
So the cookie seems to be fine, the header declaration also.
I could not find a more comprehensive documentation on this. Maybe I am missing something.
Thanks!
The text was updated successfully, but these errors were encountered: