Questions tagged [get]
GET is one of many request methods supported by the HTTP protocol. The GET request method is used when the client needs to get data from the server as part of the request-URI.
16,660
questions
-3
votes
0
answers
30
views
I can't perform a POST request in C# [closed]
I was trying to make POST and GetByID requests in my project but I'm not having success because it's showing up, I've searched about it but I haven't found anything about it.
This is showing up in my ...
0
votes
0
answers
12
views
Creating a Html Template with 2 search bars : How to not to loose get method values
I am displaying to different models as list on my Html template. I also want a search bar for both of these tables. If any search post was made on one of the tables I don't want it to overwritten when ...
0
votes
0
answers
10
views
Unresolved reference: getName Unresolved reference: getNumber Unresolved reference: getResults I have 3 errors, i just convert my java file to kotlin
override fun onBindViewHolder(holder: ViewHolder, position: Int) {
val p = dataset[position]
holder.nombreTextView.text = p.getName()
ERROR "p.getName()"
Glide.with(context)
...
0
votes
1
answer
22
views
DJANGO - The HTTP GET Request return nothing
I was running a python script that returned URLs of google search about a topic and it worked
so I tried to embed this script in Django to display these URLs on a webpage but it doesn't work anymore ...
0
votes
1
answer
17
views
When deploying to github pages, fetch is working from my pc but not from my smarphone
I am trying to learn by doing this game
https://domindez.github.io/mistery/
The problem is that fetch is not working from my phone when I am working in localhost:3000, and it's also not working after ...
0
votes
0
answers
20
views
GetAsync API in c# is not working when parameter are added dynamically
Uri URL = new Uri($"https://authenticom.azure-api.net/dv-delivery/v1/delivery/?requestId={requestId}&pageSize={pageSize}")
HttpResponseMessage response = client.GetAsync(URL).Result;
...
0
votes
1
answer
24
views
Non stop queries being called even though there is no loop Javascript
For some reason I can both successfully send the data to the localhost:8000/data and successfully retrieve it from my front end, but when I refresh my front end it endlessly calls the query. If I just ...
1
vote
2
answers
25
views
Folium get location and zoom level
I'd like to find the current view location of a folium map, and the current zoom level.
I created a map object
>> self.map1 = folium.Map(
tiles='Stamen Terrain',
...
0
votes
0
answers
13
views
Python requests library in ArcGIS Server
I am trying to send a https request to a Planet's API using python requests library, the service is allowed in ArcGIS Server, the following request works in postman:
import os
import requests
os....
2
votes
1
answer
18
views
How can I send values in the body in the HTTP GET request in Angular?
I have written the following function in my service:
/**
* Get all data
* @param sendSelectedValues string
*/
getAllActPlanBalanceYearData(sendSelectedValues: any): Observable<any> {
...
-1
votes
1
answer
28
views
Typescript HTTP Get response type as text
I am having a HTTP Get request written in Typescript
Code snippet:
getMessageContent(messageContentId?: string): Observable<string> {
const url = this.commonService.getApi('my-service/...
2
votes
2
answers
22
views
React: Trying to get app to auto fetch from API on POST
Basically I'm working on creating a ToDo app with CRUD operations, however, when I POST or DELETE a document from mongodb, I'd like my hook to auto fetch the results. I can feel that this is a simple ...
0
votes
1
answer
30
views
C# How to find substring in string?
I have this data:
AC level : FAIL
ADC AC - 0x0440
AC level : FAIL
Average ADC Batt - 0x733e
I want to get the Adc Ac value for example the 0x0440 but when I want to store it in the database ,the ...
0
votes
0
answers
36
views
hello I am new I am lost with this problem object has no attribute 'get ,someone who can guide me?
I'm new to Django, and I'm looking for a solution to this error. I sent you my forms and my view, and the error is as follows in my app . According to what appears to me in the tracer back, I would ...
-1
votes
0
answers
19
views
Post not displaying when echoed, says variable is undefined probably because it is defined in an if statement?
my previous try at this got marked as a duplicate, but the other post didn't have what I was looking for. I want to see if anyone could tell me what code to add or remove from my delete posts page to ...