17,015 questions
0
votes
1
answer
95
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
87
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 ...
0
votes
0
answers
77
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
95
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
116
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
213
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
43
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
87
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
65
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 ...
0
votes
0
answers
81
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
36
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
83
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
64
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 ...
1
vote
0
answers
129
views
Error: Request Rate Threshold Exceeded - Your Request Originates from an Undeclared Automated Tool
[W11, Python3]
I am attempting to retrieve SEC filings from sec.gov using their API, and getting this error no matter what I do.
Following the example provided here, including headers:
https://www.sec....
0
votes
0
answers
135
views
How to fetch the data from the Exchange On-chain Transfers Api of CoinGlass
I am working on an Angular app.
I have made a get request to fetch the data from this API of Coinglass. Here is the link: https://docs.coinglass.com/reference/exchange-onchain-transfers
But I don't ...
0
votes
1
answer
136
views
I'm upgrading from php 5.4 to php 8.2.12 and having some issues [duplicate]
I'm upgrading from php 5.4 to php 8.2.12 and having some issues. I ran my code through an online converter and it the result is "no issues found" meaning that the code is all compatible. ...
0
votes
0
answers
27
views
using checkbutton, var.get==1 doesn't work why? [duplicate]
update: My application is big, there is many user interfaces,I need help in "Select" button where if select one of the chechbutton, it will display on previous Gui "window" the ...
0
votes
1
answer
77
views
How do I pass form data to the next form page after sending to a php mailto page?
I have a few forms on my website which I need site visitors to submit in sequence.
'form1' sends the user data to the (php mailto) form mailer.
The header(location) of the form mailer then directs the ...
0
votes
1
answer
86
views
The GET method hits the backend twice in a row on ngOnInit Angular
When I make a GET request from Angular with a token, in the backend (Node + Express), the GET request hits twice. The first one arrives without the token, and the second one arrives with the token.
...
-1
votes
2
answers
147
views
How specifically request rows with null values through an API request
This is in the context of a Python API. I have a column where the value can be either True, False or Null, lets call it is_impounded. The Null "value" is when it is unknown whether it is ...
0
votes
1
answer
261
views
Post Request Not working for scraping a website
Step 1: Send a GET request to fetch the page and extract hidden form values
We'll first send a GET request to the page and extract necessary hidden form values like __VIEWSTATE, __VIEWSTATEGENERATOR, ...
0
votes
1
answer
103
views
Google Calendar - get an event by ID in python script
I have created an event on Google calendar in python using these lines:
service = build('calendar', 'v3', credentials=credentials)
now = datetime.datetime.utcnow().isoformat() + 'Z'
events_result = ...
0
votes
0
answers
118
views
ESP32 Ethernet HTTPS Request Fails with "tcpip_send_msg_wait_sem" Assertion Error
I'm trying to make an HTTPS GET request using Ethernet on an ESP32 with a W5500 Ethernet module. My HTTP request (non-secure) works fine, but when I switch to HTTPS using mbedTLS, I get the following ...
-1
votes
3
answers
160
views
laravel 11 : resource route doesn't work the same way when it's detailed in some route lines
laravel 11 here
in web.php
Route::resource('event', EventController::class);
works ok
when i replace this line by
Route::get('/event', [EventController::class, 'index'])->name('event.index');
...
0
votes
1
answer
76
views
Ambiguous method overloading for method java.util.LinkedHashMap#leftShift
I have a method that makes api call:
public def getInfo(String A, String B, String C, String D, String E) {
def response = null;
def requestHeaders = ['A': A, 'B' : B]
...
0
votes
1
answer
387
views
Selenium ChromeDriver does not navigate to a URL when using a custom user data directory
This is a code that used Selenium to crawl the web, but .get() does not seem to work after updating Chrome and Chrome Driver.
Chrome version is "133.0.6943.99" and the Chrome Driver version ...
-1
votes
1
answer
70
views
Is it possible to Fetch shares(post) on my personal linkedin account using linkedin API
I am trying to get get shares made by me using linkedin API but i cant find a solution.
and i also read the r_member_social permission is required to get shares but it is restricted.
tell me if there ...
0
votes
1
answer
48
views
PostgREST API - mutiple OR conditions. Is it possible?
I'm trying to create a query using PostgREST API with multiple OR conditions.
Essentially I need PostgREST query similar to this SQL query
SELECT * FROM people
WHERE condition1 AND (condition2 OR ...
1
vote
1
answer
45
views
app.post inserting data error: Cannot Get using NodeJS
I am trying to insert data into the SQL Server database using NodeJS.
When I ran the service and opened the browser-> localhost:5000 and I
got the page:
Error: Cannot Get (404) in NodeJS.
Seeking ...
0
votes
1
answer
76
views
GET multiple variable separated from POST form?
I am new to PHP, I am making a Quiz page. The answers in FORM are sent to test-submit.php as follow:
question1-answer1; question2-answer2; question3-answer2...
http://localhost/tracy/test-submit.php?...
1
vote
1
answer
138
views
Trying to confirm I am correctly passing the User-Agent header to a wikimedia api (using julia)
My question as I understand it: When using Downloads package functionality in Julia, how can I be sure I am correctly passing the header ("User-Agent" or "Api-User-Agent" = my ...
0
votes
0
answers
16
views
Google Maps API. Console showing a lot canceled GET request
Is this a problem? The map works but I don't know if the canceled requests are a problem I should address.
The console is showing the following when I open a map with a single line on it.Console log
...
2
votes
1
answer
326
views
Why does my Vercel serverless function fail to read request headers in production?
I am working on a Vercel project with both a local development environment (using vercel dev) and a production environment deployed on Vercel's serverless platform.
I need to send credentials (email, ...
0
votes
0
answers
49
views
ESP01 AT Command module with Google Firebase Realtime Database
I am working with a ESP01 module with AT Firmware, I have been trying to establish a communication between ESP01 and the Firebase database to read and write some numerical value but right now I am ...
1
vote
0
answers
47
views
POST Requests from JS front to Django backend not working with Ngrok
I'm working on a web service with Python using Django. I used Ngrok to test it before deploying.
My problem happens when the POST request I make in JavaScript in some endpoints just won't retreive any ...
0
votes
0
answers
64
views
Why is my swift alamofire sending get instead of post, also happened when i did not use the module?
import SwiftUI
import Alamofire
struct TestView: View {
// Function to send the POST request using Alamofire
func sendPostRequest() {
// URL and data
let url = "&...
0
votes
2
answers
99
views
Turning globbing off in Jmeter
I'm trying to send a GET request that has bracket characters ('[]', '{}') in the query parameters which makes JMeter (v5.6.3) think I am trying to use globbing. I have been testing my API using ...
0
votes
1
answer
41
views
How can I update the object value inside the list and make it reactive in Get Flutter
I have a list of the Map [{name: 'john', commented: 20} , ....]
controller
.nameList[controller
.nameList
.indexWhere(
(item) => item['name'] == name)]
...
1
vote
0
answers
29
views
How to get GitLab Filedata with Python Code
Im currently working on a project where i should be able to commit Python Code via GitLab and then it will automatically run some test cases for that code and will display a result. Im facing the ...
0
votes
0
answers
67
views
402 Error processing the post response from the API
I'm trying to integrate API service. We are currently in the development stage of receiving a callback about a successful payment.
When confirming the test account.
I get an error:
INFO: 35.233....
1
vote
1
answer
99
views
Golang iterable response body [closed]
I created a function that reads parts of a body of a HTTP GET response and creates an iterator.
func chunkDownload(ctx context.Context, url string, chunkSizeInBytes uint64) (iter.Seq2[io.Reader, error]...
1
vote
0
answers
58
views
GET API doesn't work in Postman whereas it's working in the browser
I have an API call where I am using GET function in Postman. I am trying to use the same url in browser with a bearer token, I am able to get the data whereas when I am using the same bearer token, I ...
0
votes
0
answers
139
views
How to properly call asynchronous request in Python without aiohttp
This may be a silly question, but I designed a small python script to synchronize two applications, designed to run in a HubSpot custom coded action. This environment runs for a maximum of 20 seconds ...
-1
votes
1
answer
42
views
PHP - Validate checkbox while canceling link redirect
I have 2 seperate parts on my webpage: a checkbox and an < a > tag that links to another page. Both of them cannot be in a single < form > tag. If a user clicks on the link, I don't want ...
-1
votes
1
answer
48
views
Parameter with spaces in datafactory business central
In datafactory i try to make a rest api get request to only get results of the past few days so i want to filter on postingdate but datafactory is replacing the spaces of the parameter woth %20 and ...
1
vote
0
answers
41
views
Cannot handover parameters to tasker android via curl
I have the following terminal request on my Mac:
curl -X GET http://192.168.1.10:8080/callnumber?Number=+1234567890
The request is properly passed to my Tasker interface on Android.
However it seems ...
0
votes
1
answer
160
views
How to get the videos ids of private dailymotion playlist?
I want to get the private video ids of private dailymotion playlist with public API key. I try the following:
<?php
//Perform authentication
$url = "https://api.dailymotion.com/oauth/token&...
0
votes
5
answers
155
views
Using 'this' in a getter/setter defined on a class field property. How to define class field getters/setters on child properties?
The issue in question relates to human readability and data organization. I would like to assign getters and setters as children of class field properties, however I can't get this to reference the ...
-1
votes
1
answer
43
views
Django Rest Framework - Cross Origin Resquest got blocked
I'm developing an API using Django Rest Framework. I'm trying to list or create an "Article" object, but when i'm trying to access the console gives me this error:
I host my frontend at http:...