The get-request tag has no wiki summary.
1
vote
0answers
30 views
boost::asio send get request after ssl connection
I'm using boost::asio and I've been looking at this example code http://www.boost.org/doc/libs/1_49_0_beta1/doc/html/boost_asio/example/ssl/client.cpp on howto connect to an ssl host. But I want to ...
1
vote
1answer
97 views
Chrome extension xhr cross domain request gives error:“is not allowed by Access-Control-Allow-Origin.”
I cant seem to request this url:
"https://ajax.googleapis.com/ajax/services/search/web?v=1.0&q=dogs" from my popup.html.
I'm getting:
XMLHttpRequest cannot load ...
1
vote
2answers
234 views
How to spoof the user agent in a GET request using JavaScript?
How to spoof the user agent in a GET request using JavaScript?
This is not allowed:
xmlHttpRequest.setRequestHeader("User-Agent", "...");
...
1
vote
4answers
347 views
How can I use jQuery load to perform a GET request while passing extra parameters?
I'm reading the jQuery load documentation and it mentions that I can use load to perform a GET request by passing in extra parameters as a string. My current code with my parameters as key/value pair ...
0
votes
3answers
59 views
Fetching external url images
I want to fetch the images[] array of an external URL. I was able to retrieve the actual source code of the page using $.ajax, but I don't know how to access the images.
Thanks.
0
votes
1answer
124 views
Passing value from zend form to another action
i am using zend framework and i'm still confuse about passing value from zend_form to another action.
let's say we have a guestbook, you fill your $name and $message in it, then after we click submit, ...
0
votes
1answer
55 views
Is it possible redirect to a URL with a POST request rather than a GET request? [closed]
Possible Duplicate:
Redirect with POST data
Is it possible for a script to redirect to a URL with a POST request in PHP?
The code I currently have uses javascript to submit a form when the ...