Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
31 views

I’m integrating ERPNext (Frappe Framework) with the Pakistan FBR DI API. I’m facing a strange issue: When I send the request using cURL, the invoice is accepted successfully. When I send the exact ...
Marium Faisal's user avatar
0 votes
0 answers
51 views

I’m trying to create events on an iCloud Calendar using CalDAV. READ operations work: PROPFIND → OK REPORT (get events) → OK Authentication with app-specific password → OK But every PUT request (...
Ayoub Dakiri's user avatar
0 votes
0 answers
36 views

I'm trying to migrate from the deprecated files.upload API to the new Slack upload flow using files.getUploadURLExternal. According to the documentation, the request should include a filename and ...
GM_1's user avatar
  • 75
Advice
0 votes
0 replies
37 views

In Spring Boot I use the standard practice of using a CommonRequestLoggingFilter bean to log the full requests in a debug profile. 2025-11-14T16:22:26.617+01:00 [362-exec-9] DEBUG ...
MortenB's user avatar
  • 3,756
-1 votes
1 answer
114 views

Question: I'm trying to create an inbound shipment using the Walmart WFS (Fulfillment Services) API v3, but I keep getting an error that shippingSummary is a mandatory field for ICC sellers. However, ...
DevIntegrator's user avatar
-4 votes
1 answer
43 views

Is there any way to stream text when my site gets CURL'd, similar to https://malted.dev/ ? I've tried using Vercel's functions, but I could not get it to return anything other than the HTML. If ...
darsh's user avatar
  • 1
1 vote
1 answer
77 views

I am migrating some control software written in python, running on a Raspberry Pi, to Home Assistant. I am having trouble getting a REST sensor to work. The sensor is supposed to post and receive info ...
paddyg's user avatar
  • 2,297
0 votes
0 answers
49 views

I'm looking for the USDA Food API that will search their database and return ONE result. Their guide says to use: curl https://api.nal.usda.gov/fdc/v1/foods/search?api_key=DEMO_KEY&query=Cheddar%...
Thomas Matthews's user avatar
-3 votes
1 answer
123 views

I updated my Fedora OS for the first time in many years, and the python version updated as well. This necessitated some minor changes to my existing code (naked print no longer allowed, <> ...
Daz Voz's user avatar
  • 29
2 votes
0 answers
68 views

I’m running Neovim 0.10.0 with mason.nvim inside WSL (Ubuntu). I have 2 Neovim configurations: one on Windows (pwsh) and the other on WSL (ubuntu). On Windows, everything works fine — I can install ...
schubert's user avatar
  • 121
0 votes
1 answer
73 views

I want to call curl with NodeJS with GET method. I want to pass authorization token and parameter. I've wrote my codes as below: const url = 'https://external-url?table-name=LD_PRD&schema-name=...
Niladri Banerjee - Uttarpara's user avatar
0 votes
0 answers
48 views

I am using following code to trigger download from browser on button click: header("Content-Disposition: attachment; filename=".$_GET['name']); $url = $_GET['name']; $url= ...
Toniq's user avatar
  • 5,158
0 votes
1 answer
82 views

Server code is a socket accepting the request from curl and logging the byte info. import socket import selectors import traceback HOST = "0.0.0.0" # Listen on all interfaces PORT = 8000 ...
Vivek Singh's user avatar
2 votes
1 answer
121 views

I'm trying to download a webpage from a specific website (Bandcamp). I'm getting different results although the request seems the same: On Windows 10, using a HttpClient in C#: I'm getting "...
Otiel's user avatar
  • 18.8k
0 votes
0 answers
69 views

Assume the following simple setup for sending telemetry to Google Sheets: Curl -> Google Apps Script deployed as Web App -> Google Sheet -> Cell 1:1 Google Apps script is a simple doPost() ...
Noideas's user avatar
  • 127
0 votes
1 answer
170 views

SOLUTION: Got rid of the --header flag, added json= to the beginning of the data set. I'm attempting to update some settings in a qBitTorrent Docker container via the WebUI's included API. I've ...
tambourinecenter's user avatar
7 votes
0 answers
122 views

I'm experiencing significant performance degradation when uploading files to Azure Blob Storage via Azure Front Door using browser JavaScript compared to cURL. Environment Files: 10 images, ~111MB ...
emanuel.virca's user avatar
0 votes
0 answers
96 views

Given the following script: curl --interface wlan0 --connect-timeout 60 --max-time 1800 -X PUT -T /tmp/compress_log/20250922_utc.tar.gz "https://ota.eu.globe-groups.com/devicelogs/881e3272-4ab4-...
chunqiu ding's user avatar
0 votes
0 answers
151 views

I'm trying to use .netrc file to authenticate access to a service, but I can't make it use Bearer authentication type! I can access the service without .netrc with the following command: curl --header ...
Mohamed Abdelaal's user avatar
-2 votes
1 answer
109 views

I’m trying to replicate a browser AJAX request using PHP’s curl, but the server always responds with HTTP 400 Bad Request. Here’s my current code: $headers = [ "Accept : application/json, ...
BouglaceMarouane's user avatar
1 vote
1 answer
141 views

I am trying to build a static FrankenPHP binary using their official Docker setup on Windows 10 with WSL 2 (Ubuntu). The build process, which uses docker buildx bake, fails at a step that downloads ...
luhur65's user avatar
  • 13
1 vote
1 answer
85 views

I'm using libCurl to send emails from a C++ program. I wrote the CURLOPT_READFUNCTION callback required by curl, passing a QDataStream from Qt as the userdata: #include <QString> #include <...
Alfredo Natale's user avatar
-3 votes
1 answer
236 views

I have a PHP script to be used as an Ajax responder, which I want to remember a previous call. I thought that it should be able to remember using $_SESSION data. I’ve simplified it down to a pair of ...
Manngo's user avatar
  • 17k
-1 votes
1 answer
105 views

I am trying to integrate the GSTR-1 B2B API from Chartered Info GST API Docs into PHP. The API request format they provide looks like this: using this documentation: https://gsthelp.charteredinfo.com/...
Pranay Kachhadiya's user avatar
2 votes
2 answers
113 views

Around 2017 I wrote a SSE (PHP) script and the JavaScript code. It worked fine with PHP-5 + HTTP/1 and the Firefox of that era. The same code now does not work with Firefox-140 esr or latest Chrome ...
krg's user avatar
  • 31
3 votes
1 answer
77 views

I must get some data via API using curl and save it to a CSV file. Example JSON data set I'm getting when connected via API: { "id": 24598942, "created_at": "2021-08-16T15:...
Vogelek23's user avatar
3 votes
1 answer
235 views

Problem Summary All Personal Access Tokens return 401 Bad credentials when using curl or direct API calls, but GitHub CLI authentication works perfectly. This affects ALL tokens including newly ...
Rebuild Factoryz's user avatar
1 vote
1 answer
1k views

Can someone help me reverse engineer the api for postimages.org? They don't provide documentation for their api. I want to upload images through api but I can only find methods to upload anonymously ...
Penguin-senpai's user avatar
-3 votes
1 answer
128 views

I want to fill the vector memory of my project in Azure AI Foundry via a CURL command. I use the way described in the documentation Uploading the file, which apparently has to be done before adding ...
HendrikD2005's user avatar
0 votes
0 answers
79 views

I’m using libcurl in C++ to upload a file via FTPS. The upload completes successfully (all bytes sent), but the connection freezes, and the server returns: > 425 Data channel timed out due to not ...
Vlad Didyk's user avatar
3 votes
3 answers
200 views

I have a simple CURL callback for a C websocket that needs to identify the closecode, but it gives me weird values when I shift it. I don't understand signed char binary representation. size_t ...
stavratum's user avatar
0 votes
2 answers
60 views

System Info alinuxchap@libertus-desktop:~ $ uname -a Linux libertus-desktop 6.12.25+rpt-rpi-v8 #1 SMP PREEMPT Debian 1:6.12.25-1+rpt1 (2025-04-30) aarch64 GNU/Linux alinuxchap@libertus-desktop:~ $ ...
Signor Pizza's user avatar
1 vote
0 answers
523 views

I am trying to scrape a page from metro using requests from curl_cffi library. When I pasting the url into POSTMAN, it works but when I paste the cURL, it returns 403. The next thing I did was try ...
Osama Abdullah's user avatar
1 vote
1 answer
88 views

Can someone suggest on the below issue please? I am able to call following API using CURL and also using Postman but when I try to write some code, Python or JS to fetch the response, it fails. Not ...
Nile's user avatar
  • 21
1 vote
2 answers
87 views

I am trying to download two files, A and B, using curl in a Makefile. The download of A has to be finished to download B. When I am executing the following command in zsh, the order is respected (B is ...
tony_merguez's user avatar
0 votes
0 answers
30 views

I always get: The request signature we calculated does not match the signature you provided. Check your key and signing method. I am using this: curl --location --request PUT 'http://172.22.24.93:9000/...
jorge armando's user avatar
0 votes
1 answer
63 views

I'm noob at C and cmake and experience difficulties with a lib linkage. I have the following cmake: cmake_minimum_required(VERSION 3.10) project(EC C) set(CMAKE_C_STANDARD 11) add_executable(EC main....
Mik's user avatar
  • 2,101
0 votes
1 answer
1k views

I have llama-server up and running on a VPS with Ubuntu 24.04. I can send curl requests from an external IP and get answers for text embedding for instance. Now I want to use multimodal models through ...
user3102556's user avatar
0 votes
2 answers
166 views

I'm setting up a reCaptcha for a client with an Enterprise Google Cloud account. I used an API Key, which is the easiest based on my client files configuration. Everything works well until I call the ...
Nicolas Halberstadt's user avatar
0 votes
0 answers
52 views

Problem I'm experiencing a 404 NotFoundHttpException when trying to insert documents into an OpenSearch products index using the opensearch-project/opensearch-php client in a Laravel application, but ...
Zabs's user avatar
  • 14.2k
0 votes
1 answer
61 views

I have a wordpress plugin that is working since this january, It displays on a web page the title and author of the song currently playing on my spotify account. Suddenly a couple of days ago it ...
kranz's user avatar
  • 621
1 vote
1 answer
172 views

I'm looking into implementing a system that allows users who have a VPN connection configured on their local machine to choose which internet requests are sent through the VPN and which are not. I ...
atrocia6's user avatar
  • 513
0 votes
2 answers
56 views

Objective Isolate Wikidata query output Command curl https://query.wikidata.org/#SELECT%20DISTINCT%20%3Fitem%20%3FitemLabel%20WHERE%20%7B%0A%20%20SERVICE%20wikibase%3Alabel%20%7B%20bd%3AserviceParam%...
Signor Pizza's user avatar
1 vote
2 answers
73 views

I am trying to create a tool to call an API, use a specific field from the response and then call one more API using that field as a parameter. E.g. I call my organization's open API for get products ...
Nile's user avatar
  • 21
0 votes
1 answer
205 views

I'm encountering an issue with 2 separate API providers who are insisting this is a problem in our code. Maybe so, but I am not sure what else I need to do here. Say a user has a password of abc%123. ...
Kai Qing's user avatar
  • 18.9k
2 votes
2 answers
109 views

I'm trying to alter the output of the curl command. Let's say for the sake of this question that I want to move 4 spaces to the right said output. Nothing else about the content of the output is ...
Silverspur's user avatar
0 votes
0 answers
38 views

I am trying to do a project on network feature recognition within a 5G core. I cloned from Github the repository: https://github.com/free5gc/free5gc-compose: which uses free5gc for docker-compose: I ...
Francesco Ardizzoni's user avatar
0 votes
2 answers
62 views

I am trying to make a shell script that will run a curl command, where a username, which is provided in a command line argument, is inserted into the curl command line. The curl command is as follows: ...
jstack100's user avatar
  • 1,396
1 vote
1 answer
49 views

I'm sending a value from a form to an ajax request which runs a cURL process on my website. I test the response back and it works perfectly. But when it goes back to AJAX, it gives a 400 error. Ajax ...
Don Sevcik's user avatar
2 votes
1 answer
167 views

I am learning web development, I have some experience in python scripting. This time, I wanted to create an api in python, so review fast api docs. I have the following set up (example contrived for ...
Keshari Suwal's user avatar

1
2 3 4 5
877