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.

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.

See also: ,

17143 questions
3
votes
0 answers

Angular http get use absolute url instead of relative url

just trying this: var baseurl = "http://platform.fatsecret.com/rest/server.api"; var request = $http.get(baseurl); request.success(function(html) { $log.log(html); }); request.error(function(html) { $log.log(html); }); but angular keeps…
user2405469
  • 1,953
  • 2
  • 22
  • 43
3
votes
1 answer

Using PHP Curl to submit form and get results

The form on the website is...

DanMossa
  • 994
  • 2
  • 17
  • 48
3
votes
2 answers

Onclick changing the url without reloading

I have a content like this : EDIT FOR ID: echo ''; $row=mysql_fetch_array($query){ echo ''; echo '
Petru Lebada
  • 2,167
  • 8
  • 38
  • 59
3
votes
1 answer

GET parameters cant retrieve using php

I'm working on a php page which can't retrieve the GET parameter values from the browser url ex- if i pass below url via browser http://www.test.com/afvalbakken?price[]=&price[]=&17[]=&17[]=&16[]=107&18[]=180 the var_dump($_GET) the output below…
Salinda Bandara
  • 203
  • 7
  • 20
3
votes
6 answers

http get request with body

i know you shouldn't send a HTTP GET Request with a body, but ceilometer web api forces me to do so. I'm developing a ceilometer scala client, so I need a scala/java way to make a get request with a body. So far I tried with beeClient…
tmnd91
  • 449
  • 1
  • 6
  • 23
3
votes
2 answers

trying to understand std::cin.get()

Hi all so i was reading about std::cin.get() func and read that we use it to capture the newline char that was entered after entering any input to the console. But i kind of got confused while writing a small very basic program and couldn't…
Puneet Mittal
  • 532
  • 1
  • 15
  • 24
3
votes
1 answer

jQuery toggle - Uncaught TypeError: undefined is not a function

i try to show one element of a class with this jquery code: jQuery('.slide_cover').get(0).toggle(800); but i get this error: Uncaught TypeError: undefined is not a function and code lick this works fine: jQuery('.slide_cover').toggle(800); also…
Flo
  • 1,179
  • 3
  • 15
  • 43
3
votes
1 answer

ios8 opportunistic background fetch GET request

I am trying to periodically(once a day-ish) perform a GET request in the background and schedule a notification based on that data. According to the docs, it should be possible, but I cannot find any code examples of anyone actually doing this. Can…
Ryan
  • 81
  • 1
  • 6
3
votes
1 answer

Python - Facebook fb_dtsg

On Facebook I want to find fb_dtsg to make a status: import urllib, urllib2, cookielib jar = cookielib.CookieJar() cookie = urllib2.HTTPCookieProcessor(jar) opener = urllib2.build_opener(cookie) data =…
user3818650
  • 581
  • 1
  • 7
  • 19
3
votes
4 answers

PHP Automatically "GET" Variables

I am desiging a new website for my company and I am trying to implement switch navigation which is what I have used on all my sites in the past.
zuk1
  • 18,009
  • 21
  • 59
  • 63
3
votes
5 answers

How to Get and Post Method at the same time

This has doing my head in for a couple of days now. I am creating a listing website. The listings are coming from direct listing creation in our website (using database). And also, we get the listings from another website in the form of data feed.…
Webnerdoz
  • 155
  • 1
  • 6
  • 15
3
votes
0 answers

Fabric: get() when folder contains 2 levels of subfolders fails?

I am fairly new to fabric, so I hope my question is justified ;). Here it comes: I want to use the get command in order to pull a folder and all files/subfolders from a linux machine to my Win 7 PC with fabric. Each subfolder on its own can also…
opstalj
  • 892
  • 4
  • 13
  • 22
3
votes
1 answer

How to put link in submit-button, using Clojure

I've been working on a Clojure project for some time and was wondering how to navigate user from one page to another after clicking the submit-button. Code goes like this: (defn view-film-input [] (view-layout [:body {:style "background-color:…
Wombat
  • 31
  • 3
3
votes
1 answer

Is it possible to log HTTP request client side with javascript?

Is it possible to log HTTP request client side with javascript? For instance going to some website-> opening the chrome console-> enter some javascript and console.log GET and POST URL's. Similar as the chrome network tab does. I have Googled but…
Youss
  • 4,196
  • 12
  • 55
  • 109
3
votes
4 answers

Http Requests POST vs GET

I am using a lot of HTTP Requests in an application that I am writing which uses OAuth. Currently, I am sending my GET and POST requests the same way: HttpConnection connection = (HttpConnection) Connector.open(url +…
littleK
  • 19,521
  • 30
  • 128
  • 188
Row1