Christophe Dervieux

Results 1378 comments of Christophe Dervieux

When we look at the code, we see that indeed `set_cookie` will encode any strings with `curl_escape` https://github.com/r-lib/httr/blob/6b84c576f866956e01835e1b6f02c55c8012d4e0/R/cookies.r#L14-L23 One way could be to add an argument to `set_config()` or so...

Hi, From the [API DOC](https://apidocs.checkbox.com/?version=latest#2f19d57d-e3ec-4879-8f3d-a82846332877) your API is supporting Oauth2 authentication using [Resource Owner Password Credentials Grant](https://tools.ietf.org/html/rfc6749#section-4.3) that uses `grant_type = "password"`. For Oauth2 API you would usually use `httr::oauth2.0_token`...

related to #564 about the same type of grant

There is a `use_basic_auth` argument in `oauth2_*` function. This passes the `key` and `secret` from the app as basic authentication. Did you try ? What you linked to is specific...

Ok, so if you tried, with which API ? I can't help if you can't provide something to test with. I don't have this kind of API at hand. Thank...

So this is a feature request. I really thing that already all the tools are there to make it work, and there is not so much to do to support...

From the code you linked to, you used a function to wrap the `POST` call I showed above and extend the Token class. At the end, as expected, it was...

I have a windows machine that require a proxy at work. I even have a PAC file. I could test something but don't know where to start. Proxy setting has...

R uses IE settings when you use download method `wininet` which is now the default on windows . `download.file` has an argument method for changing this behaviour. `httr` does not...

I began to work on something digging into curl options, and see what libcurl can do. First, we must remind that `libcurl` respects the environment variable `http_proxy`, `ftp_proxy`, `sftp_proxy`, `no_proxy`...