B4A Question post metod & SSL security - DonManfred (first post)    Mar 15, 2018   (1 reaction) https://www.b4x.com/android/forum/pages/results/?query=job.poststring+okhttp... B4A Library OkHttp - Replaces the Http library - Erel    Mar 14, 2018   (22 reactions)   tags: Webservices . The OkHttp library is based on the OkHttp SDK: http://square.github.io/okhttp/ As this is a newer SDK it supports new features such as SSL SNI, SPDY, Patch requests and better performance. The OkHttp...+. Attached is a modified version of HttpUtils2 library (v2.12) that is based on OkHttp instead of Http... is attached. It adds support for multipart requests. Example: Dim j As HttpJob j.Initialize("j...("http://...", CreateMap("param1": "value1"), Array(fd)) OkHttp and... B4A Question Needing okHTTP support for Android 4.x - JakeBullet70    Jun 22, 2022 Hi all. Working on an app that will NEVER see the play store and will be open source, GITHUB style. Anyway i want it to run on Android 4.x and above. Point being to re claim all those old Android devices every one just tosses in a drawer or the garbage dump and never use again. Am using the latest B4A and ran into issues where some libraries need a a newer API then the old phones . tablets have... B4J Question [Banano] Converting httpjob code from B4A - toby    Sep 8, 2022 .ToPrettyString(1) 'indent by 1 space Dim J As HttpJob 'depends OKHttpUtils2 J.Initialize("J",Me) J.PostString("https://mysite.com/getdetail.php" , data ) Wait For (j) JobDone(j As HttpJob) If j.Success=False Then j.Release Log... B4i Question [SOLVED] How to job.postString before app goes to background - pierrem    Jan 25, 2015 to enable it when the jobDone is fired ... Not sure Apple will agree on this :) (and not sure... when jobDone is fired ... Doesn't sound possible with iOS. Thanks in advance for yours advices :)... B4A Question OKHttpUtils2 Hard Refresh? - moinamh    Nov 15, 2022 Hello Community, Well, I was working with PHP files for a project on the server side, when I ran into a problem. After changing the PHP file or changing MYSQL, the string received from the server as a Result is the same as the previous string and has not changed. Due to the caching of information by browsers, this happens in Firefox and Chrome on the desktop too, but with a Hard Refresh using CTRL + F5 , new information is received from the server. Is there such a possibility in OKHttpUtils2... B4A Question HttpJob not connecting to Localhost - DawningTruth    Jan 27, 2023 Dim httpJob As HttpJob httpJob.Initialize("", Me) httpJob.PostString(apiUrl, jsonPostValue) httpJob.GetRequest.SetContentType("application/json") httpJob... are the details: FINISHED: ApiFetch -> Start Download Job *** Service (httputils2service) Create... -> End Download Job Error: java.net.ConnectException: Failed to connect to /127.0.0.1:2501...: ApiFetch -> End Download Job ' 28 - Non-ssl (non-https) communication is not permitted... B4A Question Stuck in a web service - MarkusR (first post)    Aug 13, 2018   (1 reaction) you send post as content type json? Job.PostString("http://www.abc/test" , data ) Job.GetRequest.SetContentType("application/json") 'need okhttp lib... B4A Question Get progress upload OKHttpJob - devmobile    Sep 24, 2017 I upload file to server with PostMultipart method in OKHttpJob library I need to show progress for upload How do can i show it?... B4A Question HttpUtils2 Content Type - Erel (first post)    Feb 16, 2017 Make sure that OkHttp library is checked. Job.PostString(...) Job.GetRequest.SetContentType("application/x-www-form-urlencoded") ... Page: 1   2   3   4   5   6   7   |