#httpRequest
I'm so spoiled by Rust. Today's example: In Java's HttpClient API, is it safe to pass the same HttpRequest object to HttpClient.send more than once? Unless I missed something, the docs don't say. In Rust, that kind of thing is right there in the function signature; just check whether the […]
Original post on toot.cafe
toot.cafe
October 15, 2025 at 12:52 PM
That helps a ton and makes a lot more sense why it's called a context! I had mostly only seen it in web requests, and it was a context on the HttpRequest. Thank you so much for the explanation!
October 9, 2025 at 10:30 PM
A very nice tip from a friend was to store my game data in a google sheet, and then use some code to download and integrate it automatically:
Using Godot, it's quite easy, with curl through HTTPRequest to Google Sheet API 👍

Link to code below ⬇️
#gamedevtip #madewithgodot
August 11, 2025 at 7:00 AM
Experimenting with adding ChatGPT to Godot.

Adding it normally was pretty easy with HTTPRequest, but adding it with streaming was much more difficult.

Now it gives responses as they’re being generated in real time!

#godot #gamedev #AI #chatgpt
July 3, 2025 at 5:40 PM
I just added a feedback form that submits to a google form, implementation took under an hour (and half of that time was realizing I needed a HTTPRequest node in the tree.)

Shoutout to DangRascals for the how-to on Reddit!

www.reddit.com/r/godot/comm...

#godot #gdscript #indiedev
May 29, 2025 at 1:33 PM
📦 wesley0010012/http-request 3.1.0

Simple HttpRequest Interface

🔗 https://github.com/Wesley0010012/HttpRequest
May 13, 2025 at 7:10 PM
HTTPRequest shouldn't (?) resolve more than once
May 7, 2025 at 3:59 PM
Abilities is a unique feature of Unison. It's how we model effectful code. Read more here: www.unison-lang.org/docs/fundame... 5/7
April 29, 2025 at 3:20 PM
📦 wesley0010012/http-request 2.0.0

Simple HttpRequest Interface

🔗 https://github.com/Wesley0010012/HttpRequest
April 16, 2025 at 1:00 AM
my websockets experience is "in a browser" where you get the client "for free", so,

"implement a websocket client in slscript" *feels* like you'd be better off using long polling or server-sent events, but idk if SL's HTTPRequest would play nice with any of those, and it's all assumptions on my end
April 12, 2025 at 9:01 PM
Hey fellow #dotNet and #AzureStaticWebApp fans. I'm currently ripping my hair out with a problem.

I'm accessing the CLientPrincipal in a .NET 9 Function. If I use the HttpRequest IHeaderDictionary I can get it no problem. If I use the HttpRequestData HttpHeadersCollection it's there, but empty.
April 6, 2025 at 12:12 PM
📦 wesley0010012/http-request 1.0.0

Simple HttpRequest Interface

🔗 https://github.com/Wesley0010012/HttpRequest
March 29, 2025 at 3:32 PM
Agreed. But I also agree that things like APIURL or HTTPRequest don't look great either. I'm still sticking to the latter when I can.
March 3, 2025 at 2:57 PM
camel-casing initialisms as if they're words gives me a massive ick. what are you talking about HttpRequest ApiUrl UserId 🤢
March 2, 2025 at 9:59 PM
I've been able to make the latency disappear by patching out the httpRequest/httpAgent here since I only use https: github.com/smithy-lang/... Could be another simple lazy-loading fix to the SDK. Will cut an issue.
github.com
February 26, 2025 at 10:23 PM
Ok, lá vamos nós. Abstrações pra esse fim? HttpRequest, que tem método, URL, body (output stream), headers.
HttpResponse, com o código http, headers, body (input stream). Agora eu preciso enviar, antes mesmo de resolver a questão dos sockets
February 14, 2025 at 10:48 PM
Having trouble getting DeepSeek to work in Godot? We’ve got you covered! In this follow-up, we fix common HTTPRequest issues and share some useful tips to make integration smoother. Watch here: youtu.be/3ujT0B3NO6s #GodotEngine #Godot #DeepSeek #GameDev #Indiedev
Fixing Common DeepSeek Issues in Godot (HTTP Request Tips & Solutions!)
YouTube video by Royas Godot
youtu.be
February 8, 2025 at 6:57 PM
Thanks for the great project idea.
Was able to directly start up a project.
First time handling the HttpRequest Node in Godot.
github.com/ignacekarkas...
#Godot #AI #GameDev #Coding
February 2, 2025 at 6:38 PM
I was building a script to filter out certain overly commercial profiles out from my followers list. (yeah, block them).
But with the HTTP request I am not able fetch the 150+ followers count. Only about a fraction

Longer post on #Reddit #bluesky #httpRequest #python

www.reddit.com/r/BlueskySoc...
Are the BlueSky numbers inflated? Issue with HTTP Request of Followers
www.reddit.com
December 29, 2024 at 4:58 PM
Context processors are Python functions that take an HttpRequest and return a dictionary to be added to the template context.

Here's an example that adds DEFAULT_FROM_EMAIL to every template. Add it to the 'context_processors' option in your TEMPLATES setting to use it.

🧵 3/4
December 6, 2024 at 1:28 PM
ID: CVE-2024-42330
CVSS V3.1: CRITICAL
The HttpRequest object allows to get the HTTP headers from the server's response after sending the request. The problem is that the returned strings are created directly from the data returned by the server and are not correctly...
#security #infosec #cve-alert
nvd.nist.gov
November 27, 2024 at 12:17 PM