<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.multitheftauto.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=DutchCaffeine</id>
	<title>Multi Theft Auto: Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.multitheftauto.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=DutchCaffeine"/>
	<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/wiki/Special:Contributions/DutchCaffeine"/>
	<updated>2026-04-16T13:26:39Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.39.3</generator>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=Template:Modules/cURL/changelog&amp;diff=40070</id>
		<title>Template:Modules/cURL/changelog</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=Template:Modules/cURL/changelog&amp;diff=40070"/>
		<updated>2014-06-22T11:13:38Z</updated>

		<summary type="html">&lt;p&gt;DutchCaffeine: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Version 1.4==&lt;br /&gt;
&lt;br /&gt;
* Changed function syntax.&lt;br /&gt;
* Cleaned the code up&lt;br /&gt;
&lt;br /&gt;
==Version 1.2==&lt;br /&gt;
&lt;br /&gt;
* Added a data return value to curl_perform, it now returns curlcode, data&lt;br /&gt;
* Removed the second argument curl_perform, it now only accepts the curl handle&lt;br /&gt;
* fixed curl_init( string url ). It now works correctly&lt;/div&gt;</summary>
		<author><name>DutchCaffeine</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=Modules/cURL/curl_strerror&amp;diff=40069</id>
		<title>Modules/cURL/curl strerror</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=Modules/cURL/curl_strerror&amp;diff=40069"/>
		<updated>2014-06-22T11:12:17Z</updated>

		<summary type="html">&lt;p&gt;DutchCaffeine: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
{{ModuleFunction|cURL}}&lt;br /&gt;
Returns a string with detailed information of an error.&lt;br /&gt;
&lt;br /&gt;
==Syntax==&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
curlStrerror(curl handler, CURLcode code)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Required arguments==&lt;br /&gt;
* '''curl''' The curl handler&lt;br /&gt;
* '''code''' The curl code&lt;br /&gt;
&lt;br /&gt;
==Returns==&lt;br /&gt;
The string containing the error, if the code was not found in the system it will return nil&lt;br /&gt;
&lt;br /&gt;
==Example==&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
curl = curlInit();&lt;br /&gt;
if not curl then&lt;br /&gt;
    outputDebugString(&amp;quot;Can't connect to http://mtasa.com/ with cURL&amp;quot;);&lt;br /&gt;
else&lt;br /&gt;
    curlSetopt(curl, CURLOPT_URL, curlEscape(curl, &amp;quot;http://mtasa.com/&amp;quot;));&lt;br /&gt;
    result = curlPerform(curl);&lt;br /&gt;
    print(curlStrerror(curl, result)); -- Since we know that mta exists, we sure get the text 'No error.'&lt;br /&gt;
    curlClose(curl);&lt;br /&gt;
end&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
{{Modules/cURL/functions}}&lt;/div&gt;</summary>
		<author><name>DutchCaffeine</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=Modules/cURL/curl_perform&amp;diff=40068</id>
		<title>Modules/cURL/curl perform</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=Modules/cURL/curl_perform&amp;diff=40068"/>
		<updated>2014-06-22T11:11:20Z</updated>

		<summary type="html">&lt;p&gt;DutchCaffeine: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
{{ModuleFunction|cURL}}&lt;br /&gt;
Let cURL do his work now, by call this function.&lt;br /&gt;
&lt;br /&gt;
==Syntax==&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
curlPerform(curl handler)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Required arguments==&lt;br /&gt;
* '''curl''' The curl handler&lt;br /&gt;
&lt;br /&gt;
==Returns==&lt;br /&gt;
Returns a curl code, if the code is CURLE_OK then your good. Other wise pass this code to curl_strerror, and then you will know what is going on.&lt;br /&gt;
On a success call it will return the data as a second argument.&lt;br /&gt;
&lt;br /&gt;
==Example==&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
curl = curlInit();&lt;br /&gt;
if not curl then&lt;br /&gt;
    outputDebugString(&amp;quot;Can't connect to http://mtasa.com/ with cURL&amp;quot;);&lt;br /&gt;
else&lt;br /&gt;
    curlSetopt(curl, CURLOPT_URL, curlEscape(curl, &amp;quot;http://mtasa.com/&amp;quot;));&lt;br /&gt;
    result, data = curlPerform(curl);&lt;br /&gt;
    if result == CURLE_OK then&lt;br /&gt;
        print(data)&lt;br /&gt;
    end&lt;br /&gt;
    curlClose(curl);&lt;br /&gt;
end&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
{{Modules/cURL/functions}}&lt;/div&gt;</summary>
		<author><name>DutchCaffeine</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=Modules/cURL/curl_escape&amp;diff=40067</id>
		<title>Modules/cURL/curl escape</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=Modules/cURL/curl_escape&amp;diff=40067"/>
		<updated>2014-06-22T11:10:18Z</updated>

		<summary type="html">&lt;p&gt;DutchCaffeine: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
{{ModuleFunction|cURL}}&lt;br /&gt;
Escape url's. You wont need this function if you pass the url to curl_init.&lt;br /&gt;
&lt;br /&gt;
==Syntax==&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
curlEscape(curl handler, string url)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Required arguments==&lt;br /&gt;
* '''curl''' The curl handler&lt;br /&gt;
* '''url''' The url you want to escape&lt;br /&gt;
&lt;br /&gt;
==Returns==&lt;br /&gt;
The escaped url, if it fails it will return nil&lt;br /&gt;
&lt;br /&gt;
==Example==&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
curl = curlInit();&lt;br /&gt;
if not curl then&lt;br /&gt;
    outputDebugString(&amp;quot;Can't connect to http://mtasa.com/ with cURL&amp;quot;);&lt;br /&gt;
else&lt;br /&gt;
    curlSetopt(curl, CURLOPT_URL, curlEscape(curl, &amp;quot;http://mtasa.com/&amp;quot;));&lt;br /&gt;
    curlClose(curl);&lt;br /&gt;
end&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
{{Modules/cURL/functions}}&lt;/div&gt;</summary>
		<author><name>DutchCaffeine</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=Modules/cURL/curl_cleanup&amp;diff=40066</id>
		<title>Modules/cURL/curl cleanup</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=Modules/cURL/curl_cleanup&amp;diff=40066"/>
		<updated>2014-06-22T11:09:40Z</updated>

		<summary type="html">&lt;p&gt;DutchCaffeine: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
{{ModuleFunction|cURL}}&lt;br /&gt;
Cleans up the curl handle.&lt;br /&gt;
&lt;br /&gt;
==Syntax==&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
curlCleanup(curl handler)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Required arguments==&lt;br /&gt;
* '''curl''' The curl handler&lt;br /&gt;
&lt;br /&gt;
==Returns==&lt;br /&gt;
Nothing usefull&lt;br /&gt;
&lt;br /&gt;
==Example==&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
curl = curlInit(&amp;quot;http://mtasa.com/&amp;quot;);&lt;br /&gt;
if not curl then&lt;br /&gt;
    outputDebugString(&amp;quot;Can't connect to http://mtasa.com/ with cURL&amp;quot;);&lt;br /&gt;
else&lt;br /&gt;
    curlPerform(curl);&lt;br /&gt;
    curlCleanup(curl);&lt;br /&gt;
    curlClose(curl);&lt;br /&gt;
end&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
{{Modules/cURL/functions}}&lt;/div&gt;</summary>
		<author><name>DutchCaffeine</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=Modules/cURL/curl_pause&amp;diff=40065</id>
		<title>Modules/cURL/curl pause</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=Modules/cURL/curl_pause&amp;diff=40065"/>
		<updated>2014-06-22T11:08:59Z</updated>

		<summary type="html">&lt;p&gt;DutchCaffeine: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Modules/cURL/func_page|&lt;br /&gt;
description		= Pause a request or result|&lt;br /&gt;
syntax			= &amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;CURLcode curlPause(CURL handler, int bitmask)&amp;lt;/syntaxhighlight&amp;gt;|&lt;br /&gt;
required_arguments      = * '''handler''' The curl handler&lt;br /&gt;
* '''bitmask''' An integer representing what you want to pause. Read more about this [[Modules/cURL/variables/CURLPAUSE|here]]|&lt;br /&gt;
optional_arguments	= None|&lt;br /&gt;
returns			= Returns a CURLcode, if everything is oke it returns CURLE_OK|&lt;br /&gt;
example			= &amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
curlPause( curl, CURLPAUSE_RECV );&lt;br /&gt;
curlPerform( ... );&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>DutchCaffeine</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=Modules/cURL/curl_setopt&amp;diff=40064</id>
		<title>Modules/cURL/curl setopt</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=Modules/cURL/curl_setopt&amp;diff=40064"/>
		<updated>2014-06-22T11:08:20Z</updated>

		<summary type="html">&lt;p&gt;DutchCaffeine: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
{{ModuleFunction|cURL}}&lt;br /&gt;
Set an curl option.&lt;br /&gt;
&lt;br /&gt;
==Syntax==&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
curlcode curlSetopt(curl handler, curloption option, bool/number/string value)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Required arguments==&lt;br /&gt;
* '''handler''' The curl handler.&lt;br /&gt;
* '''option''' An curl option, al the options are found [[Modules/cURL/CURLOPT|here]]&lt;br /&gt;
* '''value''' The value, this can be a string, number or boolean. At the [[Modules/cURL/CURLOPT|curl option list]] you can find wich option needs a string, number or boolean.&lt;br /&gt;
&lt;br /&gt;
==Returns==&lt;br /&gt;
Returns a curlcode. Nevermind it for now, i even don't know what it is. But it returns it.&lt;br /&gt;
&lt;br /&gt;
==Example==&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
curl = curlInit(&amp;quot;http://mtasa.com/&amp;quot;);&lt;br /&gt;
if not curl then&lt;br /&gt;
    outputDebugString(&amp;quot;Can't connect to http://mtasa.com/ with cURL&amp;quot;);&lt;br /&gt;
else&lt;br /&gt;
    curlSetopt(curl, CURLOPT_POST, true);&lt;br /&gt;
    curlClose(curl);&lt;br /&gt;
end&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
{{Modules/cURL/functions}}&lt;/div&gt;</summary>
		<author><name>DutchCaffeine</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=Modules/cURL/curl_close&amp;diff=40063</id>
		<title>Modules/cURL/curl close</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=Modules/cURL/curl_close&amp;diff=40063"/>
		<updated>2014-06-22T11:07:35Z</updated>

		<summary type="html">&lt;p&gt;DutchCaffeine: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
{{ModuleFunction|cURL}}&lt;br /&gt;
Closes the curl engine.&lt;br /&gt;
&lt;br /&gt;
==Syntax==&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
curlClose(curl handler)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Required arguments==&lt;br /&gt;
* '''curl''' The curl handler&lt;br /&gt;
&lt;br /&gt;
==Returns==&lt;br /&gt;
True on succes, false otherwise&lt;br /&gt;
&lt;br /&gt;
==Example==&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
curl = curlInit(&amp;quot;http://mtasa.com/&amp;quot;);&lt;br /&gt;
if not curl then&lt;br /&gt;
    outputDebugString(&amp;quot;Can't connect to http://mtasa.com/ with cURL&amp;quot;);&lt;br /&gt;
else&lt;br /&gt;
    curlClose(curl);&lt;br /&gt;
end&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
{{Modules/cURL/functions}}&lt;/div&gt;</summary>
		<author><name>DutchCaffeine</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=Modules/cURL/curl_init&amp;diff=40062</id>
		<title>Modules/cURL/curl init</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=Modules/cURL/curl_init&amp;diff=40062"/>
		<updated>2014-06-22T11:06:57Z</updated>

		<summary type="html">&lt;p&gt;DutchCaffeine: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Modules/cURL/func_page|&lt;br /&gt;
description		= Initialize the curl engine.|&lt;br /&gt;
syntax			= &amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;curl curlInit([string url])&amp;lt;/syntaxhighlight&amp;gt;|&lt;br /&gt;
required_arguments      = *There are no required arguments.|&lt;br /&gt;
optional_arguments	= * '''url''' The url which you want to connect too.|&lt;br /&gt;
returns			= A valid curl handler on succes, otherwise it returns false|&lt;br /&gt;
example			= &amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
curl = curlInit(&amp;quot;http://mtasa.com/&amp;quot;);&lt;br /&gt;
if not curl then&lt;br /&gt;
    outputDebugString(&amp;quot;Can't connect to http://mtasa.com/ with cURL&amp;quot;);&lt;br /&gt;
else&lt;br /&gt;
    -- lets do something here.&lt;br /&gt;
end&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>DutchCaffeine</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=Modules/cURL&amp;diff=40061</id>
		<title>Modules/cURL</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=Modules/cURL&amp;diff=40061"/>
		<updated>2014-06-22T11:06:01Z</updated>

		<summary type="html">&lt;p&gt;DutchCaffeine: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Module_Info|&lt;br /&gt;
  name           = MTA Curl |&lt;br /&gt;
  version        = 1.2 |&lt;br /&gt;
  author         = [[User:mrdejong|Alexander de Jong (mrdejong)]] |&lt;br /&gt;
  module_website = ''[https://github.com/mrdejong/mta_curl Here]'' |&lt;br /&gt;
  download_link  = ''[https://dl.dropboxusercontent.com/u/10711598/mta_curl/1.4/mta_curl_win32.zip]'' |&lt;br /&gt;
  license        = [http://www.opensource.org/licenses/bsd-license.php BSD] |&lt;br /&gt;
  written_in     = C++ |&lt;br /&gt;
  operating_system = Windows|&lt;br /&gt;
  compatible_with = 1.3.0, 1.3.1, 1.3.2, 1.3.5 |&lt;br /&gt;
}}&lt;br /&gt;
MTA Curl module is a handy module to make restful api web calls. You could do everything with it.&lt;br /&gt;
&lt;br /&gt;
The module is based on php cURL module.&lt;br /&gt;
&lt;br /&gt;
If you found any bugs, please post them on the [[https://github.com/mrdejong/mta_curl/issues|github page]]&lt;br /&gt;
&lt;br /&gt;
You can find the source at the [[https://github.com/mrdejong/mta_curl|github repository]]&lt;br /&gt;
&lt;br /&gt;
Update 22-6-2014&lt;br /&gt;
&lt;br /&gt;
Released version 1.4;&lt;br /&gt;
&lt;br /&gt;
This release changed the function name syntax to adobt the mta syntax.&lt;br /&gt;
&lt;br /&gt;
==cURL functions==&lt;br /&gt;
{{Modules/cURL/functions}}&lt;br /&gt;
&lt;br /&gt;
==cURL variables==&lt;br /&gt;
{{Modules/cURL/variables}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Modules]]&lt;br /&gt;
&lt;br /&gt;
[[ru:Modules/cURL]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Changelog==&lt;br /&gt;
{{Modules/cURL/changelog}}&lt;/div&gt;</summary>
		<author><name>DutchCaffeine</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=Template:Modules/cURL/functions&amp;diff=40060</id>
		<title>Template:Modules/cURL/functions</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=Template:Modules/cURL/functions&amp;diff=40060"/>
		<updated>2014-06-22T11:05:05Z</updated>

		<summary type="html">&lt;p&gt;DutchCaffeine: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* [[Modules/cURL/curl_init|curlInit]]&lt;br /&gt;
* [[Modules/cURL/curl_close|curlClose]]&lt;br /&gt;
* [[Modules/cURL/curl_setopt|curlSetopt]]&lt;br /&gt;
* [[Modules/cURL/curl_pause|curlPause]]&lt;br /&gt;
* [[Modules/cURL/curl_cleanup|curlCleanup]]&lt;br /&gt;
* [[Modules/cURL/curl_escape|curlEscape]]&lt;br /&gt;
* [[Modules/cURL/curl_perform|curlPerform]]&lt;br /&gt;
* [[Modules/cURL/curl_strerror|curlStrerror]]&lt;/div&gt;</summary>
		<author><name>DutchCaffeine</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=Modules/cURL&amp;diff=40059</id>
		<title>Modules/cURL</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=Modules/cURL&amp;diff=40059"/>
		<updated>2014-06-22T11:03:41Z</updated>

		<summary type="html">&lt;p&gt;DutchCaffeine: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Module_Info|&lt;br /&gt;
  name           = MTA Curl |&lt;br /&gt;
  version        = 1.2 |&lt;br /&gt;
  author         = [[User:mrdejong|Alexander de Jong (mrdejong)]] |&lt;br /&gt;
  module_website = ''[https://github.com/mrdejong/mta_curl Here]'' |&lt;br /&gt;
  download_link  = ''[https://dl.dropboxusercontent.com/u/10711598/mta_curl/1.4/mta_curl_win32.zip]'' |&lt;br /&gt;
  license        = [http://www.opensource.org/licenses/bsd-license.php BSD] |&lt;br /&gt;
  written_in     = C++ |&lt;br /&gt;
  operating_system = Windows|&lt;br /&gt;
  compatible_with = 1.3.0, 1.3.1, 1.3.2, 1.3.5 |&lt;br /&gt;
}}&lt;br /&gt;
MTA Curl module is a handy module to make restful api web calls. You could do everything with it.&lt;br /&gt;
&lt;br /&gt;
The module is based on php cURL module.&lt;br /&gt;
&lt;br /&gt;
If you found any bugs, please post them on the [[https://github.com/mrdejong/mta_curl/issues|github page]]&lt;br /&gt;
&lt;br /&gt;
You can find the source at the [[https://github.com/mrdejong/mta_curl|github repository]]&lt;br /&gt;
&lt;br /&gt;
Update 27-5-2013&lt;br /&gt;
&lt;br /&gt;
I released the version 1.2, this build is not yet available for linux.&lt;br /&gt;
&lt;br /&gt;
Most important update is how the module works the result data from a call. Please check out curl_perform function to see how you retrieve the data from a call.&lt;br /&gt;
&lt;br /&gt;
==cURL functions==&lt;br /&gt;
{{Modules/cURL/functions}}&lt;br /&gt;
&lt;br /&gt;
==cURL variables==&lt;br /&gt;
{{Modules/cURL/variables}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Modules]]&lt;br /&gt;
&lt;br /&gt;
[[ru:Modules/cURL]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Changelog==&lt;br /&gt;
{{Modules/cURL/changelog}}&lt;/div&gt;</summary>
		<author><name>DutchCaffeine</name></author>
	</entry>
</feed>