tags:

views:

27

answers:

1

What would the following cURL command look like as a generic (without cURL) http request?

feedUri="https://www.someservice.com/feeds\
  ?prettyprint=true"

curl $feedUri --silent \
  --header "GData-Version: 2"

For example how could such an http request be expressed in the browser address bar? Partucluarly, how do I express the --header information if I were to just type out the plain http request?

+2  A: 

I don't know of any browser that lets you specify header information in the address bar. I believe there are plug-ins that let you do this, but I don't have any experience with them.

Here is one for firefox that looks promising: https://addons.mozilla.org/en-US/firefox/addon/967

Basically what you want to do is not a standard browser feature.

Hogan