Skip to main content
Filter by
Sorted by
Tagged with
1 vote
0 answers
52 views

When calling fetch("http://server.com/api) we can send custom headers, like "authorization". But when including images, videos, or other things in the HTML, there is no control over the ...
Alex's user avatar
  • 66.6k
0 votes
0 answers
144 views

I am working on a project where the main goal is to create a website where users will be able to watch live streams. These live streams will come from different sources, over different protocols. I ...
Roberto's user avatar
0 votes
0 answers
59 views

I want to change the OpenBMC Event service Subscription functionality from HTTPS to the HTTP method that does not require certificates, to facilitate sending Events and receiving Event information via ...
Hong's user avatar
  • 1
0 votes
1 answer
128 views

I am running a simple Dart server with package shelf. The server makes a request to generativelanguage.googleapis.com. Everything is working fine on my own machine. When the Dart program is running on ...
NoctisBeta's user avatar
1 vote
1 answer
95 views

I'm trying to ping this url for live events https://www.imf.org/en/live with this code: using var httpClientHandler = new HttpClientHandler() { MaxAutomaticRedirections = 10, AllowAutoRedirect = true};...
Fernando's user avatar
  • 3,644
0 votes
1 answer
116 views

I want disable caching on my static website. Currently I'm using the myFile.js?v=123 trick, and update the number every time I make a change. But I'm sure there's a better way of doing this. This ...
Petra1999's user avatar
1 vote
0 answers
53 views

i am implementing image upload in my app. i want to use imgur's api. i got the code from the postman collection in their docs. but i am getting - DioException [connection error]: The connection ...
Aayan Agarwal's user avatar
0 votes
1 answer
80 views

Get file from multipart post request Receive the file from PartData through streamProvider() not working val fileName = part.originalFileName ?: "unknown" val file = File(filename) file....
Sujan Mandal's user avatar
1 vote
1 answer
54 views

I am trying to do a POST request to my classless personal-api.php file located at http:ip.address:port\public\api\personal\personal-api.php but it returns a cURL error(28) I am using Http facade to ...
bitmarksss's user avatar
1 vote
1 answer
250 views

I am trying to convert a simple URLSession request in Swift to using NWConnection. This is because I want to make the request using a Proxy that requires Authentication. I posted this SO Question ...
Ahmed Zaidan's user avatar
2 votes
0 answers
37 views

I'm setting up a system that plays a publicly-hosted podcast over the phone through Twilio, using the code from this project. However, on any podcast that I can find, the audio is inaccessible to ...
R.M.'s user avatar
  • 133
2 votes
1 answer
64 views

I've recently been debugging a problem with an application that parses RSS feeds, and encountered some behaviour in a third-party RSS feed which seems rather odd to me. I would be interested in ...
Richard Smith's user avatar
0 votes
1 answer
107 views

I am trying to use a proxy with auth in Swift. I finally got it working using NWConnection. And I can see from my proxy server that it's actually getting the request from my iOS app when I call this ...
Ahmed Zaidan's user avatar
0 votes
1 answer
109 views

I'm creating an Open Metrics HTTP source for a Prometheus server in Rust. I'd rather avoid pulling in a whole web server library (crate) because I control the infrastructure and pretending to answer ...
RandomInsano's user avatar
  • 1,260
0 votes
1 answer
88 views

When setting any URL to use HTTPS as the scheme (i.e., https://), I get my desired response (i.e., page source), but any http url (i.e., http://) fails or I receive a header and I don't understand why ...
Simonhawk's user avatar
0 votes
1 answer
106 views

I was making a http server in c and this came to mind. Im not sure if it's possible to recieve unlimited bytes. The server just gets the path and sends the requiered file, so in this case i dont think ...
danilogames220's user avatar
-1 votes
1 answer
63 views

I'm experiencing a very strange issue where a specific website, www.trysuri.com, returns a 200 OK status code but only a single byte of content. This happens in both Firefox and Edge on my Windows 11 ...
Mick McCarthy's user avatar
-1 votes
2 answers
679 views

I get this error all the time tried everything switching JVMs and stuff changing code itself but nothing really works Chat GPT also doesn't help. If someone know what's the dead with this please help. ...
Lem's user avatar
  • 3
1 vote
0 answers
26 views

A lot of (news) websites provide at least short text previews (e.g., news articles) to search engines (e.g., Google). When browsing to such websites, those text pieces are not visible but replaced ...
Tom Maier's user avatar
  • 403
0 votes
1 answer
182 views

When making my post request as seen below, I receive a status 401 error from the /oauth/request_token endpoint. I'm at the first step in a 3 step process for authenticating with https://api.x.com to ...
viktorhex's user avatar
2 votes
0 answers
126 views

My front-end application uses OKTA and passes the access token to my backend. The backend then parses the token information to get user information and check whether the token is expired. ...
Spo's user avatar
  • 21
1 vote
1 answer
136 views

The docs for http.Client.Timeout says: The timeout includes connection time, any redirects, and reading the response body The docs for http.Transport.MaxConnsPerHost says: MaxConnsPerHost optionally ...
bobbuilder's user avatar
0 votes
0 answers
45 views

I try to use swagger with my GET, POST an PUT endpoints. When I try to trigger GET enpoint without authentication it returns me 401, but POST and PUT 403. Why is that so different? I would like to all ...
Hayami Pysh's user avatar
0 votes
0 answers
28 views

I'm working with Tally XML requests and need to extract PriceLevels using an XML Schema request. However, I'm unsure how to correctly identify and retrieve the PriceLevels. Below is the XML request I'...
bjss kiriti's user avatar
0 votes
0 answers
57 views

Whenever I try to attempt to connect in the server using websocket, it throws and error that says: Websocket error: WebsocketChannelException: WebSocketException: Connection to 'http://host:port/v2/ws-...
Angelo Bicomong's user avatar

1
3 4
5
6 7
1362