17,065 questions
-4
votes
0
answers
52
views
Get all reviews and comments of an app in App Store [closed]
i need to make a customer care tool to reply all the user comments on my app in the app store, so first i need to get the information of those comments. but i can't find any good API to get it
Can ...
2
votes
0
answers
42
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 ...
0
votes
0
answers
32
views
SEC.gov | Request Rate Threshold Exceeded - Your Request Originates from an Undeclared Automated Tool
[W11, Python3]
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.gov/...
0
votes
0
answers
64
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
52
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
25
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
59
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
70
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
76
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
243
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
55
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
41
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
99
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
49
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
227
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 ...