16,998 questions
-1
votes
1
answer
139
views
Why is my PHP query string malfunctioning?
I am writing a simple web-app to display flashcards using PHP, SQL and HTML.
To show the cards currently created I have a page called view_cards.php which loads with a query string comprising the ...
1
vote
1
answer
119
views
How do I get the UniprotKB API request results to match the results from Uniprot Website search?
I have a list of strings I want to search with UniProt and then get the first entry and its information.
My problem is that the following code does return results, but it doesn't return the first ...
0
votes
1
answer
137
views
HTTP Request Through Ncat in Powershell Windows
I am using Ncat to send raw HTTP requests to the backend JS server. I will add here the backend and frontend files. We write ourselves, which is the goal of the task.
I have installed Ncat and I send ...
1
vote
0
answers
85
views
Using smartsheetr - smartsheet API calls in R
I'm trying to use {Smartsheetr} to import data into R. I'm attempting to use the ss_get() function of the package to call the data from my Smartsheet` into a data frame in R, but am unsure if my ...
1
vote
2
answers
102
views
Write GET Variables from URL path in HTACCESS [closed]
I am trying to create a semi-serverless SPA w/ a blog but want to have "RESTful" URLs. I have the following .htaccess commands doing the job--in combination with JavaScript History API; but, ...
-1
votes
1
answer
125
views
My fpdf2 PDF is blank when I try to download it from the browser after passing it to the front end
I cannot for the life of me figure out why this PDF won't display. I'm using fpdf2 to create a PDF that looks good when saving it from the Python script. However, something must be going wrong when ...
0
votes
0
answers
236
views
How can i request data standings data with /league-standings endpoint from fbrapi.com?
If anyone has any experience in working with fbrapi.com to request data I would like some help.
I am trying to request the data for League Standings but I am keep getting an internal server error. ...
1
vote
1
answer
37
views
Sometimes a browser reload to a server is not generating a HTTP GET - but just an empty connection?
I use a microcontroller as a server for HTTP requests. The first HTTP request from Chrome, Firefox, Safari seems to be a GET request with (depending on the browser) some 400 additional characters of ...
0
votes
0
answers
60
views
How to resolve a 404 error when serving a fastAPI application?
I am trying to run an application with the command unicorn main:app.
The server opens the browser at the correct port, however there is an error that prevents the app from being visible in the browser....
0
votes
1
answer
94
views
AxiosError 500 when uploading using .get in an ocr api [closed]
When I try to hit this API
const response = await api.get(
`/upload/file?fileName=${file.name}&fileType=${
file.type.split('/')[1]
}&ocr=true&resource=presc`,
{
headers: {
...
0
votes
1
answer
81
views
Include an Id in a HTTP POST request body that supports wildcard search
There is a java, REST API based web application which uses HTTP POST request to search a user specific parameters including wildcards. The same application uses GET request to get specific resources ...
1
vote
0
answers
93
views
Download satellite data using http::GET but the files are incomplete
I'm trying to download lots of satellite data from a government website. When I download each file individually, by manually clicking the download button on the site, the files are about 13 MB each. ...
0
votes
1
answer
39
views
IndexedDB await get not returning an object
Working with IndexedDB, I have this code:
async function Get() {
const dataset=await db.result.transaction('Store1','readwrite').objectStore('Store1').get(5);
console.log(dataset);
}
I am expecting ...
0
votes
1
answer
114
views
Power automate desktop - empty URI error for Get Emails(V3)
The desktop flow is designed to [ick up API info and then use the candidate ID from the email for further processing. pulling data via the API and feeding it into an excel sheet. The API part does not ...
3
votes
1
answer
75
views
Why am I getting a 404 status code from my PUT method, when the GET method returns 200?
The method saveToDatabase() that I use to store the list of questions to my db.json on Github, returns 404 status code from the PUT method. Whereas, the same method returns a 200 status code when ...