Hadley Wickham
Hadley Wickham
Oh hmmmmm, there's no way to do that currently. I'll have to think about some way to extend the API so it is possible to add additional arbitrary request options...
Yeah, that's a totally reasonable work around, but I'd prefer something more general for httr2 itself.
General, as in applied to all `oauth_` functions. In general, you'll only want to use #435 for very specific purposes (e.g. a proxy) since it will effect all requests, even...
Leave it open, I think, and hopefully eventually I'll figure out a nice interface for this.
Looking at this with fresh eyes, I'm increasingly confinced that #435 will be the solution, since you'll be able to do something like: ```R host_config( "accounts.adp.com", \(req) req_options(req, sslcert =...
@gaborcsardi is there an existing helper to find the device that corresponds to a path? Or do you just find the longest `mountpoint` prefix that matches your path?
@tdeenes for content, this PR is a consequence of a live discssuion with @daroczig. My primary concern with the current behaviour is that it will silently behave differently depending on...
Minimal reprex: ``` r pkgdown:::value2html("Note that \\code{xxx} by default drops \\code{yyy}, etc. ") #> [1] "Note that xxx" "" #> [3] "" "by default drops" #> [5] "" "yyy, etc."...
@dmurdoch I tried that approach and while it solves this problem, it breaks some of the other existing tests. Do you happen to have a more precise definition of how...
Ok, this got way easier when I stopped trying to write clever vectorised code 😆