Questions tagged [get-request]

HTTP GET Request is a message within a request/response sequence, according to HTTP specification. May also refer to an HttpRequest GET method in software frameworks and libraries that automates relevant functionality

See also:

414 questions
1
vote
1 answer

NEXTJS Server Side Rendering Gives Undefined

I am trying to get data as given solution above but still i am getting undefined instead of data but when I send this same request through postman and thunderclient it gives me success with 200 status code. Please Guys, help me out... export async…
1
vote
1 answer

React app performance issue when fetching big data

I have a React app where I need to fetch project details from an API using a list of project IDs. I have a JSON file (projectIds.json) containing approximately 950 project IDs. The app fetches project details for all the project IDs at once, but…
Krisna
  • 2,854
  • 2
  • 24
  • 66
1
vote
1 answer

Flutter error when sending post request (even with correct data)

I have a code where I use http package in flutter to post request from a Fake API, which I found using the website mocki.io. The problem is that whenever I put the correct data, it keeps giving me response.statusCode = 405. http_service.dart (post…
Alef Gomes
  • 13
  • 4
1
vote
0 answers

Total open connections reached the connection limit

I'm running Python Flask with Waitress. I'm starting the server using the following code: from flask import Flask, render_template, request from waitress import serve @app.route("/get") def first_method(): ... @app.route("/second") def…
BlackHawk
  • 719
  • 1
  • 6
  • 18
1
vote
1 answer

Sharp keeps sending response. How to stop it?

I'm trying to resize an image using Sharp module and then render it on GET request path. fs.readFile(`${imageDir}${filename}.jpg`, (err, img) => { if (err) { // File name doesn't match existing images res.send('Error: No image…
1
vote
0 answers

InertiaJS preserveState: false work on dev but not work on production server

In my code I have several conditionally rendered components and tab menu which defines the active one. Each component has its own logic for loading the part of content after user pushes the button inside of them. I have a problem on production…
1
vote
2 answers

API GET request in C#

I have a task where I have to write a program which displays you the sunrise and sunset time at your location on a WPF GUI (C#). To make this work, I need to use the Sunrise Sunset API from https://sunrise-sunset.org/api The description says: "Ours…
44ay_
  • 27
  • 1
  • 5
1
vote
0 answers

convert GET request that's array of paths to blob

My response is array of paths (for images) and looks something like: [ "path_of_img1", "path_of_img2", "path_of_img3" ] Using Material-UI I want to display those images in As far as I know for images, the paths have to be…
Garabed B.
  • 21
  • 3
1
vote
2 answers

Flutter : can't get all response body from get request

I have get request in Flutter app, when I test the request in postman I get all data, something like this : { "result":{ "name" : "somename", "images":[ "test.jpg", "test2.jpg" ], "sizes":[ { "id": 1, …
1
vote
2 answers

Save scroll position while doing php get request in same page

I have list of company workers. When I click to a worker, in corner of page showing workers image from mysql database. and mysql SELECT parameters I get from url: Example: John SMITH How can I save my…
1
vote
1 answer

c++ libcurl get request is returning 0 but still printing in the console

I've installed libcurl on ubuntu 20.4 and I've been playing around with it. I decidedly wanted to create a program that would write a file from the internet. So I wrote this. #include #include #include #include…
paxous
  • 119
  • 10
1
vote
1 answer

Python: How to parallel get requests to minimize timing?

I'm very new to programming and to stackoverflow rules in particular. Please let me know if I missed any important information to indicate in my question. I'm looking for a simple solution to parallel my get requests using selenium module on…
1
vote
3 answers

How to show a background image loaded in CSS at the same time as the rest of the CSS

I have created a small spring-boot application, which does nothing but implement a login-form. When I open my browser on http://localhost:8080/login while running my application, a login.html page is loaded, which references a css file as…
Luk
  • 1,009
  • 2
  • 15
  • 33
1
vote
1 answer

How do I get nested JSON data list and display it in a MatTable?

The JSON data below is obtained through a Get Request to the service https://reqres.in/api/users The data-objects are users (based on their values), I want to get that User information which is nested in the root, to display the list in the MatTable…
Tassisto
  • 9,877
  • 28
  • 100
  • 157
1
vote
0 answers

SQL Server - Call Binance API with API Key Header

I want to get my Binance account info by calling API via SQL Server. But I can't figure it out how sent API key with suitable format. Is it possible? How should I sent API key with get request? Error: {"code":-2014,"msg":"API-key format…
rkapukaya
  • 77
  • 1
  • 8