Until now I only know that it is an interface that has the following methods:
invokeMethod ()
invokeFunction ()
getInterface ()
But I do not understand what each of them is for and exactly where the Invocable interface is...
These are very close terms and I have already found texts that exchange these concepts, as if in certain situations the definitions are almost the same.
What are the technical definitions that distinguish a API from a library or a Framew...
I'm trying to make a cron run every X time in the system android tag to call a service that I have made.
The features of cron that I want to do are the following:
run independently if the Application is running or not (partially d...
I have a API Rest that I use locally and I need to upload it to a web server. The problem I have is that it will not be configured once it is uploaded to communicate with the server's SQL database.
The error I get is this:
XMLHttpReq...
I would like you to guide me a bit with this. I am trying to consume an API Rest in C # and have an authentication where I must pass these parameters or values: username , password , client_id , client_secret , grant_t...
everyone, Thanks for watching my question, I hope you can help me. is the following ..
I have the following code.
in html
<div id="summary"></div>
In Js I have
function callurl() {
$.ajax({
url: 'https://j...
How can I see the thumbnails of my images from google Drive ?
That is to say, that the api of google drive returns the url of the thumbnail.
I also use jquery , if necessary or to facilitate it.
<html>
<head>
<...
I made a Facebook application that I linked to my site with the PHP SDK v5 on Facebook, with this application the user logs on to my site and I give him the option to publish on my site, while it is published on the site. site is shared in certa...
I'm trying to send an AT command to a 3G module whose response is going to be OK. I want to capture that OK in a buffer for its subsequent treaty. For this I did the following:
1- Abri the port according to:
hSerial = CreateFile("\\.\COM1",...
I have a model that I have called Empleado which has a foreign key to a model Direccion to keep a record of the employee's addresses.
Serializer:
from rest_framework import serializers
from models import Empleado, Direccion...