B4J Library [B4X] Firebase Auth REST API - Alexander Stolte    Apr 26, 2024   (20 reactions) ",True)) complete (root As Map)
If root.Get("success") = True Then
For Each k As String In root.Keys
Log("Key: " & k & CRLF & "Value: " & root.Get(k))
Next
Else
Log("ErrorCode: " & fa_rest.getErrorCode(root))
Log("ErrorMessage: " & fa_rest.ge B4J Question [Q&A] Web API Server 3 - aeric (first post)    Nov 01, 2024   (2 reactions) Frequently Asked Questions (FAQ) What is the difference between Web API vs REST API? Basically REST API is API or Web API that follows the REST principals. Usually it consists of GET, POST, PUT and DELETE. It is also commonly associated with database CRUD operations that is Create, Read, Update B4J Question rest api - Erel (first post)    Apr 01, 2021   (1 reaction) Looks like an error:
StringEntity reqEntity = new StringEntity("{body}");
request.setEntity(reqEntity);
GET requests shouldn't have a body.
Tutorial: https://www.b4x.com/android/forum/threads/b4x-okhttputils2-with-wait-for.79345/
Something like:
Dim j As HttpJob
j.Initialize(Me, "")
j.Download Share My Creation OKAPIs: REST API Builder en Documenter - alwaysbusy    Apr 19, 2018   (24 reactions) This is just a first look at OKAPIs (as in Okay APIs). It allows the creation, documentation and code generation for a B4J REST API. I have only been able to work a night or two on it yet, but this would be the 'public' view e.g. for third parties who want to use your REST API. More in the coming B4A Code Snippet [B4X] Google Geocoding REST API - Erel    Dec 12, 2019   (26 reactions) Usage example:
Wait For(PlaceToLatLon("Israel Yodfat")) Complete (ll() As Double)
If ll(0) <> 9999 Then
Log("Location: " & ll(0) & ", " & ll(1))
Else
Log("Failed to geocode.")
End If B4J Tutorial [Web] Using PocketBase as a Framework: Lets create a REST API - Mashiane    Nov 07, 2023   (3 reactions) Ola.
Its amazing with the latest version of PocketBase one can extend it with JavaScript / Go.
So I tested creating some REST API handlers. You can unzip the attached file to your pocketbase folder. It should create a pb_hooks folder. You can then call the handler via the browser after starting yo B4A Code Snippet Send SMS/MMS using Twilio Rest API - JohnC (first post)    Dec 25, 2020   (2 reactions) This is a REST API, so it should work "from" any platform. B4A Library ✨ Magic API Library: Transform Your MySQL Database into a REST API in Just 5 Minutes! ? - fernando1987    Dec 30, 2023   (8 reactions) Authentication: All API requests require an API key to be included as a query parameter. This key uniquely identifies the client making the request and provides access control to the API endpoints.
HTTPS: Communication with the API is always encrypted over HTTPS, ensuring that data transmitted betwe B4J Tutorial [Web] Creating Secure MySQL REST API based WebApps using Api Keys on top of HTTPS - Mashiane    Apr 30, 2024   (2 reactions) Hi Fam. This tutorial is based on the api.php project, originally posted in the forum on September 9, 2022. See the Related Content section below. This time around we are looking at how we can use Api Keys for Authenticating our MySQL WebApps to make them secure when using REST API functionality. B4A Question REST API APP - optimization - FrostCodes (first post)    Nov 12, 2021   (2 reactions) I think the optimizations you need to make depend on what the app allows the end-user to do.
For example if the app only allows the end-user to see the data and it's not necessary that the data is always in its latest form, you can do a local cache but it it allows the user to edit data, then this m Page: 1   2   3   4   5   6   7   Powered by ColBERT |