Giter VIP home page Giter VIP logo

Comments (6)

MilesMcBain avatar MilesMcBain commented on September 26, 2024 1

Thanks! I see the same thing, raw content coming through untransformed.

from ambiorix.

JohnCoene avatar JohnCoene commented on September 26, 2024

Thanks!

I will have to add something to better handle this.
However, httpuv only allows returning a character vector of length 1.

By raw vector do you mean something like the output of charToRaw?
If so, I'm guessing paste0(x, collapse ="") would be enough (until I provide something better)

from ambiorix.

MilesMcBain avatar MilesMcBain commented on September 26, 2024

In the response body httpuv supports character vector or raw vector. See: rstudio/httpuv#216

In this case by raw vector I mean a protocol buffer. I don't think your work around would work for me as I don't control the receiver, and it's expecting binary.

from ambiorix.

JohnCoene avatar JohnCoene commented on September 26, 2024

OK. Can you reinstall the latest dev version and try again?
It should not convert your response body to character.

from ambiorix.

JohnCoene avatar JohnCoene commented on September 26, 2024

If that still does not work could you share a reproducible example?

from ambiorix.

JohnCoene avatar JohnCoene commented on September 26, 2024

OK, I truly fixed it now, this works.
Requires latest Github version.

library(ambiorix)

img <- "https://www.r-project.org/logo/Rlogo.png"

temp <- tempfile(fileext = ".png")
download.file(img, temp)

size <- file.info(temp)$size
con <- file(temp, "rb")
raw <- readBin(con, raw(), size)
unlink(temp, force = TRUE)
close(con)

print(class(raw))

# core app
app <- Ambiorix$new()

app$get("/", \(req, res){
  res$header("Content-Length", size)
  res$header("Content-Type", "image/png")
  res$send(raw)
})

app$start()

from ambiorix.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.