Closed Coder13134 closed 3 years ago
Same here.
Same here.
Hi ertgrulll. I solved the given problem as follows:
I would suggest making a PR. It's really appreciated
Same here.
Hi ertgrulll. I solved the given problem as follows:
- Doing fork this module
- add next string:
- and write in pubspec.yaml (instead original string):
Hi, thanks for solution. It's working when backslash replaced with "". But it will not work on cookies that contains something like "\"", because you are removing all backslashes, removeInvalidCharacter method should change with this:
String removeInvalidCharacter(String value) {
// Remove Invalid Character
var valueModified = value.replaceAll('\\"', "'").replaceAll("\\", "");
valueModified = valueModified.replaceAll(String.fromCharCode(32), "");
return valueModified;
}
Merged and release new 2.0.1 version. Thanks for your contribution @ertgrulll
Greetings. I logged in to one of the sites using webviews. Now I am trying to get the cookie, but I get the following error. Apparently, the cookies contain a forbidden character (slash). How can this problem be solved? Before that, everything worked. Appeared with a flutter version update (dart)