Hey @c0derabbit It would be useful to post the code you’re using to make the request in the browser, how you’re logging the response and so on. Without that there’s very little information here to help you.
Hi @Kevin,
looks like a Chrome issue. I just checked the network tab in Safari (should have done that earlier, as it logs the unfinished response just like chrome does), it works fine there. So it’s most probably not Ghost-related.
RE the request, it’s just a simple fetch. But I’m actually checking the network tab for the response.
fetch(ghost.url.api('posts', {limit: 3})).then(
res => console.warn(res),
err => console.warn(err)
);
Thanks for your response, will post a solution here anyway once I find it.
That’s a very simplistic example, you’ll need additional error checking because a “successful” request that was actually an error won’t have the res.json() method. This is a good overview of the fetch API: Serving