Difference between revisions of "UrlLoader"
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
− | |||
<!-- GIDEROSOBJ:UrlLoader --> | <!-- GIDEROSOBJ:UrlLoader --> | ||
− | ''' | + | '''Supported platforms:''' [[File:Platform android.png]][[File:Platform ios.png]][[File:Platform mac.png]][[File:Platform pc.png]][[File:Platform html5.png]][[File:Platform winrt.png]][[File:Platform win32.png]]<br/> |
− | ''' | + | '''Available since:''' Gideros 2012.2.2<br/> |
− | ''' | + | '''Inherits from:''' [[Object]]<br/> |
− | === | + | === Description === |
− | The | + | The '''UrlLoader''' Class is used to download data from an URL. It can be used to download (and optionally save) text files, XML files, JSON files, image files or binary files, etc. |
− | Downloaded data is delivered at ''event.data'' field of [[ | + | Downloaded data is delivered at ''event.data'' field of [[Event.COMPLETE]] event as string. Lua is eight-bit clean and so strings may contain characters with any numeric value, including embedded zeros. That means that you can store any binary data into a string. |
==== HTTP Request Methods ==== | ==== HTTP Request Methods ==== | ||
UrlLoader supports GET, POST, PUT and DELETE methods. These are defined by these string constants: | UrlLoader supports GET, POST, PUT and DELETE methods. These are defined by these string constants: | ||
− | + | *''UrlLoader.GET = "get"'' | |
− | + | *''UrlLoader.POST = "post"'' | |
− | + | *''UrlLoader.PUT = "put"'' | |
− | + | *''UrlLoader.DELETE = "delete"'' | |
− | |||
− | |||
− | === | + | === Examples === |
− | ''' | + | '''Downloading an image file from an URL, saving it to the documents folder and displaying it on the stage. This example also shows downloading progress and handling errors''': |
<source lang="lua"> | <source lang="lua"> | ||
local loader = UrlLoader.new("http://example.com/image.png") | local loader = UrlLoader.new("http://example.com/image.png") | ||
Line 47: | Line 44: | ||
</source> | </source> | ||
− | '''Uploading a file | + | '''Uploading a file''': |
<source lang="lua"> | <source lang="lua"> | ||
local filename = "crate.png" | local filename = "crate.png" | ||
Line 74: | Line 71: | ||
{|- | {|- | ||
| style="width: 50%; vertical-align:top;"| | | style="width: 50%; vertical-align:top;"| | ||
− | === | + | === Methods === |
− | [[ | + | [[UrlLoader.new]] ''creates a new UrlLoader object''<br/><!--GIDEROSMTD:UrlLoader.new(url,method,headers,body) creates a new UrlLoader object--> |
− | [[ | + | [[UrlLoader:close]] ''terminates the current loading operation''<br/><!--GIDEROSMTD:UrlLoader:close() terminates the current loading operation--> |
− | [[ | + | [[UrlLoader:ignoreSslErrors]] ''ignores SSL certificate related errors''<br/><!--GIDEROSMTD:UrlLoader:ignoreSslErrors() ignores SSL certificate related errors--> |
− | [[ | + | [[UrlLoader:load]] ''loads data from the specified URL''<br/><!--GIDEROSMTD:UrlLoader:load(url,method,headers,body) loads data from the specified URL--> |
| style="width: 50%; vertical-align:top;"| | | style="width: 50%; vertical-align:top;"| | ||
− | === | + | === Events === |
− | + | [[UrlLoader_Event.COMPLETE]]<br/><!--GIDEROSEVT:Event.COMPLETE complete--> | |
− | [[ | + | [[Event.ERROR]]<br/><!--GIDEROSEVT:Event.ERROR error--> |
− | <!-- GIDEROSEVT:Event.COMPLETE complete--> | + | [[Event.PROGRESS]]<br/><!--GIDEROSEVT:Event.PROGRESS progress--> |
− | [[ | + | === Constants === |
− | <!-- GIDEROSEVT:Event.ERROR error--> | + | [[UrlLoader.DELETE]]<br/><!--GIDEROSCST:UrlLoader.DELETE delete--> |
− | [[ | + | [[UrlLoader.GET]]<br/><!--GIDEROSCST:UrlLoader.GET get--> |
− | <!-- GIDEROSEVT:Event.PROGRESS progress--> | + | [[UrlLoader.POST]]<br/><!--GIDEROSCST:UrlLoader.POST post--> |
− | === | + | [[UrlLoader.PUT]]<br/><!--GIDEROSCST:UrlLoader.PUT put--> |
− | [[ | ||
− | [[ | ||
− | [[ | ||
− | [[ | ||
|} | |} | ||
{{GIDEROS IMPORTANT LINKS}} | {{GIDEROS IMPORTANT LINKS}} |
Revision as of 01:06, 2 March 2023
Supported platforms:
Available since: Gideros 2012.2.2
Inherits from: Object
Description
The UrlLoader Class is used to download data from an URL. It can be used to download (and optionally save) text files, XML files, JSON files, image files or binary files, etc.
Downloaded data is delivered at event.data field of Event.COMPLETE event as string. Lua is eight-bit clean and so strings may contain characters with any numeric value, including embedded zeros. That means that you can store any binary data into a string.
HTTP Request Methods
UrlLoader supports GET, POST, PUT and DELETE methods. These are defined by these string constants:
- UrlLoader.GET = "get"
- UrlLoader.POST = "post"
- UrlLoader.PUT = "put"
- UrlLoader.DELETE = "delete"
Examples
Downloading an image file from an URL, saving it to the documents folder and displaying it on the stage. This example also shows downloading progress and handling errors:
local loader = UrlLoader.new("http://example.com/image.png")
local function onComplete(event)
local out = io.open("|D|image.png", "wb")
out:write(event.data)
out:close()
local b = Bitmap.new(Texture.new("|D|image.png"))
stage:addChild(b)
end
local function onError()
print("error")
end
local function onProgress(event)
print("progress: " .. event.bytesLoaded .. " of " .. event.bytesTotal)
end
loader:addEventListener(Event.COMPLETE, onComplete)
loader:addEventListener(Event.ERROR, onError)
loader:addEventListener(Event.PROGRESS, onProgress)
Uploading a file:
local filename = "crate.png"
local file = io.open(filename, "rb")
local contents = file:read( "*a" )
local boundary = "somerndstring"
local send = "--"..boundary..
"\r\nContent-Disposition: form-data; "..
"name="..filename.."; filename="..filename..
"\r\nContent-type: image/png"..
"\r\n\r\n"..contents..
"\r\n--"..boundary.."--\r\n";
local headers = {
["Content-Type"] = "multipart/form-data; boundary="..boundary,
}
local loader = UrlLoader.new("http://localhost/gideros.php", UrlLoader.POST, headers, send)
loader:addEventListener(Event.COMPLETE, function(e)
print(e.data)
end)
MethodsUrlLoader.new creates a new UrlLoader object |
EventsUrlLoader_Event.COMPLETE Constants |