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
2
votes
1 answer

fetch GET request getting 400 (Bad Request)

Getting 'GET 400 bad request' error when passing a query string to the URL in fetch() import React, { useState, useEffect } from 'react'; import Card from '../UI/Card'; import './Search.css'; const Search = React.memo(props => { const {…
2
votes
1 answer

How to accept variable amount of parameters in Google Sheets

I'm building a solution in which the amount of parameters added to an HTTP get request is variable. This means the URL can carry 1 to n amount of parameters. The parameters in the URL are identified with a standard name and attached index. Here is a…
2
votes
3 answers

SSL: CERTIFICATE_VERIFY_FAILED certificate verify failed in Python

While writing POST REQUEST in Python, I've faced some issue: self._sslobj.do_handshake() ssl.SSLCertVerificationError: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: self signed certificate (_ssl.c:1108) I don't want to set: verify =…
syeenn
  • 191
  • 2
  • 3
  • 11
2
votes
1 answer

R - Translate GET requests in Postman with body raw to GET requests in R

I have a question about to add body to GET request. In Postman, I easily add body raw json to tab Body In R, I use httr::GETand I can not find any option to add them. I try to use option query, but it return error 500 "Missing parameter…
Linh
  • 147
  • 7
2
votes
0 answers

HttpClient get Request with Bearer Token doesn't work from Angular but works fine with Postman

So I want to send a HttpClient get Request From Angular with Bearer Token. The API Call works fine with Postman using Bearer token but for some reason it returns error code 500 when sent from Angular. This is my service code : getCurrentUser():…
Clover
  • 21
  • 3
2
votes
1 answer

Google Analytics - Measurement Protocol - Hits not recognized/visible in Enhanced Ecommerce Reports

Google referred me to this forum, since they did not have a solution to the following issue. So the issue we are facing is that hits send via the measurement protocol are registered by Google Analytics in the real-time- and events reports, but those…
2
votes
1 answer

nested mapping in Spring Boot does not load static content

So it's my html file: getPass.html
Mori
  • 107
  • 9
2
votes
1 answer

Swift GET request with url parameters

I am building a survey where when a user answers a question I append the answers to a url string with parameters and send a get request to my server. So for every answer there is a record made of the selected answer, timestamp and unique id of the…
jfulton
  • 77
  • 1
  • 10
2
votes
1 answer

Failed to convert value of type 'java.lang.String' to required type 'java.util.Date' when sending GET request

I have this method in my Controller (This is a Kotlin method, but I think you can understand it): open fun getAis( @RequestParam("beginPeriodDate") @DateTimeFormat(pattern = "yyyy-MM-dd") beginPeriodDate: Date, …
2
votes
1 answer

How to parse Get Request Response?

I am attempting to parse through json data and I have come across an issue where it is not parsing anything as well as not being output into my Table row object. I have created a parse method : public static String parseRequest(String…
xavier fuller
  • 59
  • 1
  • 7
2
votes
1 answer

Set parameters of GET request with groovy

I want to provide parameters for a GET request/ API call to the AYLIEN text analytics API. I can set the headers for the key and ID as authorization and the call itself works (my usage statistics of the API increase after running the code), but I…
Colle
  • 154
  • 1
  • 11
2
votes
1 answer

Laravel - Undefined variable: request

My http://localhost:8888/VGL/public/category/18?sty=3 When dd($request->sty); equal 3 however I put $request->sty in the whereHas is Undefined variable: request public function show(Request $request, $id) { $products =…
Hao Phung
  • 99
  • 1
  • 3
  • 11
2
votes
1 answer

Why two get requests are not updating fields in thingspeak?

A single run cannot update two or more get request to my thingspeak fields. My code has a part which requires two fields to get updated in one python…
2
votes
1 answer

API request works for postman but got timeout for volley

So I was using API request in spoonucalur, which is a recipe api that provide recipe. I tried the get request inside postman and it works fine. However, it works so unstable in my app. I am using android studio, using volley for the library to…
Wal Wai
  • 29
  • 2
2
votes
0 answers

Restful Webservice method for get request

I am trying to write a web service method for get request and its return type is ResponseEntity. But when i trying to run this from Postman then its gives response body as Not acceptable. following is the result and code of my method. …
1 2
3
27 28