B4A Question simple app-server authentication using a custom HTTP header? - sirjo66 (first post)    Apr 22, 2025   (2 reactions) There are many ways to protect your app communication, depending what is the request level.
For exam... B4A Question Getting HTTP headers only - wimpie3    Jun 27, 2018 I'm trying to find out the content length of a file before downloading it, by doing a HEAD request:
Dim httpjob As HttpJob
httpjob.Initialize("httpreturnfunction", Me)
httpjob... B4A Question [ OkHttpUtils2 ] Bug on HttpJob Header ? - Waldemar Lima    Jun 15, 2021 an "unknown" error, see the clues below :
Dim j As HttpJob
j.Initialize("", Me)
j.PostString("https://pay.api","") 'the request parameter is empty... B4A Question Http headers setup - Scantech    Oct 2, 2017 website:
Request URL
https://od-api.oxforddictionaries.com:443/api/v1/entries/en/ace
Request Headers
{
"Accept": "application/json",
"app_id": "111111111"... B4A Question Get specific key from the http response header - tufanv    May 3, 2019 Hello,
I have used Erel's modified code to get the http response header. I need to get the 3 keys from the response header and use those keys at the next request. The returned header is like... B4A Question Error when SetHeaders HttpJob with Special Characters 'Ñ' - scsjc    Aug 9, 2019 I'm use a HttpJob to send a PostMultipart, with a GetRequest.SetHeader("user"... value: baño
Dim j As HttpJob
j.Initialize("", Me)
Dim fd....PostMultipart(posturl, null, Array(fd))
j.GetRequest.SetHeader("user", "baño... B4A Question HttpJob headers - mcqueccu (first post)    Feb 16, 2022 j.GetRequest.SetHeader("Header Item", "Value")
Example
j.GetRequest.SetContentType("application/json")
j.GetRequest.SetHeader("user-agent","... B4A Question [SOLVED] Http Headers In Request -[ Use OKHTTP AND OKHTTPUTILS2] - konradwalsh (first post)    Apr 15, 2016 If you use okhttputils then you need to add okhttp too
This was exactly the problem...
thanks for y... B4A Question http request set header exception - bluedude    Feb 13, 2013 Hi,
I have problems setting a header in my http request, I get an exception code (nullpointer). I'm 1000% sure the header has a value.
'set URL request
Dim urlRequest As HttpRequest
'request settings
If httpHeader <> "" Then
urlRequest.SetHeader (httpHeader... B4A Question HTTP response headers reading - Erel (first post)    Jul 12, 2018 This line is not stored in the response headers. What do you need to find? The status code or the http version?... Page: 1   2   3   4   5   6   7   |