Manual:Urlencoding
(Redirected from Manual:Urlencode)
Urlencoding is required in a number of situations. For example, API tokens need to be urlencoded or they will be rejected as invalid.
Wikitext
editYou can URL encode a string from the wikitext using this magic word :
{{urlencode: VERY LONG EXAMPLE & SOMETHING }}
Result:
VERY+LONG+EXAMPLE+%26+SOMETHING
PHP
editSettings headers
editTypical code for setting headers, e.g. for API:Edit , would be:
curl_setopt( $this->curl, CURLOPT_HTTPHEADER, array( 'Content-Type: application/x-www-form-urlencoded' ) );