1.01 : HTTPRequest() UserData bug
Posted: Mon Apr 13, 2015 10:07 pm
Doc say UserData is an integer, and compiler say UserData should be a string
Code: Select all
Procedure HttpGetEvent(Success, Result$, UserData)
If Success
;Debug Result$
Debug UserData
Else
Debug "HTTPRequest(): Error"
EndIf
EndProcedure
; Get the content of this file, and display it in the debug window
;
HTTPRequest(#PB_HTTP_Get, #PB_Compiler_Filename, 123, @HttpGetEvent())