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
4
votes
2 answers

Java http get request slower than postman get request

I'm trying to send a get request in order to get a website content. When I'm using Postman it takes about 70-100 ms, but when I use the following code: String getUrl = "someUrl"; URL obj = new URL(getUrl); HttpURLConnection con =…
Dan
  • 71
  • 7
3
votes
2 answers

Translate text using google without API

I am trying to write a simple free translator (QT widget) using the online translation service. The idea is to send the standard get request to an online translator, and then parse the response. But the reply does not contain the translated text ! I…
Inversus
  • 63
  • 1
  • 5
3
votes
1 answer

while calling get web service request Using Retrofit. "android.os.TransactionTooLargeException: data parcel size 1575704 bytes"

This is my code. I am simply calling get a request for my profile through the activity. And I got this error for that. when I comment the method call (Get Request method) it works fine and shows me my UI. but when calling it just showing a black…
3
votes
0 answers

Failed to read values in CFPrefsPlistSource

I write cocoa-app and using Vapor . After starting the server i do get-request from the application. And and I get a message: [User Defaults] Failed to read values in CFPrefsPlistSource<0x6080000e7500> (Domain: com.apple.PowerManagement, …
3
votes
1 answer

Variables and data files in Postman Collection Runner

I have an API get requests in Postman that uses a data file of voucher codes to look up other information about the code, such as the name of the product the code is for. When using collection runner the voucher codes are passed incorrectly and the…
3
votes
2 answers

How send GET request with value of parameter containing a space?

I'm testing this code below to send GET request with parameters and this code fails when the value of parameter is a string containing a space, Ex: http://company.com/example.php?value=Jhon 123. Already if i send Jhon123 (withou any space) works…
user8584489
3
votes
1 answer

Read json object and find value in it

I have the following GET request: string url = @"http://api.flexianalysis.com/services/flexianalysisservice.svc/TechnicalAnalysisByCategory?clientid=___&category=forex&key=____"; HttpWebRequest request =…
Igal C
  • 45
  • 1
  • 9
3
votes
0 answers

Can't send a GET-request with value from session-storage which is stored in a variable

I am working with angularjs and I am trying to access a value stored in vm.userid to the server side. I want to store a value from session-storage to vm.userid and then send it with the API request. I have checked my session-storage and the value I…
3
votes
3 answers

How to show GET request in Label

My get request works only in command line NSLog. I need to show a data in Label, but it doesn't works. -(void)getRequest{ NSURLSessionConfiguration *getConfigObject = [NSURLSessionConfiguration defaultSessionConfiguration]; NSURLSession…
Evgenii
  • 422
  • 2
  • 14
2
votes
1 answer

Get Request Spring Boot 410 Unauthorised

I am complete noob in Spring Boot, but I tried to create a Back-end server. I coded all the work that must be done in the background and it is working perfectly. This is the "RequestsController"…
user20879521
2
votes
1 answer

GET request works on Postman but fail with RestSharp

I know that similar questions have been already posted in the past but I read a lot on the subject and still couldn't find an answer to my problem. I have a GET request that works fine on Postman: I translated it with the Code tool in C# -…
Paslet87
  • 87
  • 6
2
votes
2 answers

Streamlit button on_click not refreshing images from API Endpoint URL

I am new to Streamlit, and am trying to build a simple app which will show a cat picture from https://cataas.com/cat on clicking a button. I have the following simple code: def show_kitty(): st.image('https://cataas.com/cat') st.button("Click…
2
votes
1 answer

How to send a GET request with login data and save cookie data to txt file?

I want to send a GET request with login data and save cookie data to txt file. I had a curl data curl -c cookies.txt 'http://localhost:8080/api/v2/auth/login' \ -H 'sec-ch-ua: " Not A;Brand";v="99", "Chromium";v="98"' \ -H 'sec-ch-ua-mobile:…
Anas S
  • 63
  • 5
2
votes
2 answers

How to listen to GET and POST requests for all connections using GO

I am using python and mitmproxy to listen to all incoming and outgoing traffic so that I can capture the URLs. I run the script and it tells me all URLs my computer is trying to connect to. I need to implement the same using Go but have not got a…
Han Hanz
  • 41
  • 4
1
2
3
27 28