質問

If i have a url structured like this:

<scheme> : <path> ? <key> = <parameter> & <otherkey> = <otherparamet>

is that a specific 'type' of URL? Im trying to figure out if this conforms to RFC 1738

役に立ちましたか?

解決

There are URL's formatted like this:

http://www.example.com/search.php?name=jeremy&state=oh

In this case, the ? starts the query and the & separates the parameters.

The parameters are URIComponentEncoded and may look a bit funny.

他のヒント

I think you're leaving stuff out.... Using those delimiters you gave and in that order, I can construct an HTTP GET request to a specific port, supplying two named identifiers with data values.

http://some.domain.com:portnumber?key1=value1&key2=value2
ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top