17,298 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
Best practices
1
vote
2
replies
97
views
c# - How to download large files in .NET application?
We use .NET 8 currently and what I've encountered is a bit annoying and interesting topic at the same time and I would need some advice on how to do it right. Our application can download log files ...
1
vote
1
answer
70
views
Search scopus id using Scopus api
I have a list of researchers and their institutions. I want to find their papers and citation counts using the Scopus API.
When I search for a researcher name using Scopus API with the following query:...
0
votes
0
answers
61
views
Alexa skill on aws lambda: can't make POST request in python
I'm an Alexa Skill dev beginner. I've developed a simple skill that makes a POST request in python. I've checked the code on my laptop. When run as an Alexa skill on free tier of AWS Lambda, the skill ...
1
vote
0
answers
106
views
DIST Alert Data Extraction Issue
I am trying to extract data about the DIST Alerts using the following script:
import requests
API_KEY = ''
API_BASE = "https://data-api.globalforestwatch.org"
DATASET = "...
0
votes
1
answer
118
views
PayFast cancel subscription (sandbox mode) in Python
I am trying to cancel a PayFast subscription (in the sandbox) using the API tools, in Python.
Looking at the PayFast documentation for recurring billing cancellations it appears to be a PUT request ...
0
votes
0
answers
51
views
Getting Undefined in body while hitting post request through postman
import { DBCon } from "./db/index.js";
import express from "express";
const app = express();
app.use(express.json());
app.use(express.urlencoded({ extended: true }));
DBCon()
....
0
votes
0
answers
58
views
Empty value HTTP POST Multipart/form-data field using RestSharp
Good morning, I am facing the following issue when sending this request, which requires a Multipart/form-data with one parameter receiving a JSON and another receiving the file. Currently, this is the ...
-1
votes
1
answer
229
views
Problems handling SSRF vulnerability on api rest request
I'm strugging to remove a SSRF vulnerability detected by checkmarx as part of our ci/cd pipeline at work and i have little knowledge about fixing this kind of problem (this vulnerability prevents me ...
0
votes
1
answer
125
views
Intermittent `java.net.SocketException: Broken pipe` during Android Multipart Upload - Client-Side Stream Corruption or Premature Close?
I'm grappling with a highly intermittent java.net.SocketException: Broken pipe error while uploading multiple images from my developemnt Android app using HttpURLConnection to a production Java server....
0
votes
1
answer
199
views
Congress API Auth Token Failure
Congress API Down
Over the past few days I've been building along term web app that interfaces with the official Congress.gov API (found here),but as of 20 minutes ago, the entire API seems to have ...
-2
votes
1
answer
93
views
How to change camelCase to snake_case in the body of a request?
I want to transform camelCase to snake_case and still allowing snake_case in the body of a POST request.
I mean, If the request has a camelCase body i want to transform to snake_case and if the ...
2
votes
1
answer
97
views
Request.Querystring shows HTTP Error 404.19 - Not Found
In C# and ASP.NET, I've been sending a value to another page via Request.Querystring for years, but just recently I've come against a page error that I cannot explain.
If I send a string that has
0X
...
0
votes
1
answer
32
views
Add Entra group as administrator to repository
i have a entra group X, i want to add them in repository and set the permission as admin access through API. and it should be visible in UI here
com-project → Project Settings → Repositories → sample-...
0
votes
0
answers
38
views
Sometimes get 415 Unsupported Media error when requesting Google Geocode API
I’m getting a 415 Unsupported Media Type error when making a request to the Google Maps Geocoding API. However, this issue doesn’t always occur — sometimes the request works fine, and other times it ...
0
votes
0
answers
129
views
How can Apps Script WebApp retrieve request's cookie in doGet(e)?
I want to pass a (HttpOnly) cookie to Google Apps Script doGet(e) endpoint (e.g. from fetch(...) on the client), but there doesn't seem to be any way to retrieve incoming cookies/headers out of e.
I ...