B4A Code Snippet [B4X] Post multipart requests / file uploads with progress - Erel    Apr 27, 2021   (14 reactions) As OkHttpRequest = job.GetRequest
req.InitializePost(Link, cin, length)
req.SetContentType... As String = "post-" & TempCounter
Dim stream As OutputStream = File.OpenOutput(xui... B4J Question Read POST request?? - ilan    Sep 11, 2022 hi
i would like to know what is the proper way to read a POST request in b4j Server App?
this is the Post request:
Private Sub addNewUser
Dim j As HttpJob
j.Initialize("", Me... B4A Question [solved] okhttp not removing headers in a POST request - DonManfred    Jun 28, 2015 .Initialize("getthumbnail",Me) job.Tag = path job.PostString(mApiV2urlContent&"files/get_thumbnail","") job.GetRequest.SetHeader("Authorization", "Bearer "&mAccessToken) job.GetRequest.SetHeader("Dropbox-API-Arg"...:"${size}"}"$) 'job.GetRequest.SetContentEncoding("text/plain") job.GetRequest.RemoveHeaders("Content-Type") End Sub I would expect to get the Content-Type... B4R Question send BIG HTTP POST request - peacemaker    Jun 18, 2025 ...
It's around 50....200 kB of JSON text.
I didn't try yet.
PHP POST request by default... B4J Question ABMaterial Make Post Requests - walterf25    May 19, 2023 Hi all, is there a way to send either Get or Post requests to an ABMaterial page, something like this: http://myipaddress:port/pagename?SerialNumber=xxxxxx Thanks all. Walter... B4A Question Problems with Post multipart requests - Blueforcer    Feb 24, 2025 im trying a upload with erels example project from https://www.b4x.com/android/forum/threads/b4x-post-multipart-requests-file-uploads-with-progress.130181
(im just changed the URL)
Unfortunally im... B4R Question [rHttpUtils2] POST request does not work [SOLVED] - Johan Hormaza    Jan 4, 2022 Sending the data through the POST request does not work
Sub JobDone (Job As JobResult)
Log..., ", buffer size:", raf.CurrentPosition)
HttpJob.Post("https://chatbot-dot... B4J Question Strange behavior on VPS if i make a post request with httpsutils - Alexander Stolte    Nov 5, 2020 ("oobCode":oobCode))
Dim j As HttpJob : j.Initialize("",Me)
j.PostString(url,json.ToString)
j.GetRequest.SetContentType("application/json")
Wait For (j) JobDone(j... B4A Question OKHttpUtils2, Progress_Sub and POST Request? - Moosi    Jul 22, 2017 Hi all,
I´m looking for a solution to download a large file (>50MB) with progress.
But I need to send the Request as POST string.
Does someone has an Idea how to do this?
thanks in advance
Moosi... B4J Question HTTP POST request when loading webpage - ThRuST    Oct 23, 2020 the server.
How can the webpage be displayed together with a HTTP POST request when the values is delivered... the POST method to hide the data being sent.
Sub SendPostRequest
Dim val1 As String = "Hello"... Page: 1   2   3   4   5   |