# How to read Download response body string?

**URL:** https://discourse.julialang.org/t/how-to-read-download-response-body-string/114996
**Category:** New to Julia
**Tags:** question
**Created:** [May 31, 2024, 6:24am UTC](https://discourse.julialang.org/t/how-to-read-download-response-body-string/114996 "2024-05-31T06:24:00Z")
**Posts on this page:** 1
**Showing post:** 2

<div class="post-metadata">

### Author: ![fredrikekre](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/fredrikekre/32/1688_2.png) [@fredrikekre](https://discourse.julialang.org/u/fredrikekre)
#### Post date: [May 31, 2024, 6:38am UTC](https://discourse.julialang.org/t/how-to-read-download-response-body-string/114996/2 "2024-05-31T06:38:58Z")

</div>

> [@listenmmm](#):
>
> ` @show readchomp(response_bpdy_io)`

The `position` of the buffer will be at the end so you are just reading the empty string. You can `seekstart` to the beginning before reading:  
`readchomp(seekstart(response_body_io))`.

---

_[View the full topic](https://discourse.julialang.org/t/how-to-read-download-response-body-string/114996)._
