requests
requests copied to clipboard
**Describe the bug** Cannot add requests to Flutter 3.3.0 project via `flutter pub add requests` or 'dart pub add requests` **To Reproduce** Steps to reproduce the behavior: 1. In android...
**Describe the bug** When trying to use requests with the current ```http``` package, I get the error ``` Because requests >=4.1.0 depends on http ^0.13.4 and myapp depends on http...
I would like to use version 5.0.0. I see that is was tagged here in github, but I don't see the version on pub.dev. There doesn't seem to be any...
## Proposed changes Add the ability to send FormData encoded data ## Type of changes Adding a new feature. *Put an `x` in the boxes that apply.* - [ ]...
**Describe the bug** `Requests.getStoredCookies` has no clear definition what to pass as URL if you want to retrieve the cookie returned from a request you just made. **To Reproduce** Steps...
My flutter app is working good on all android versions except greater than 10 while using mobile data, I checked it on Samsung A71 having android 13 and it worked...
**Cookies management is very approximate on browser because the browser manages it itself ** For example, we can't read the cookies values, especially for CORS cookies. **Add a proxy web...
Hey, I really love this library. However, I need to send requests with FormData. I don't see any method to do it with this lib. Could it be possible to...
I get the error "Type 'BidirectionalIterator' not found." when compiling an Android app. This error seems to happen because BidirectionalIterator is deprecated. I have found this issue where they say...
I am trying to fetch data from a website through three requests: 1. GET a CSRF token cookie. 2. POST the login info. 3. Fetch the desired data. The above...