I currently have this:
$line_array_product = array(
'order_id' => new xmlrpcval($erp_order_id, "int"),
'type' => new xmlrpcval('Product', "string"),
'product_id' => new xmlrpcval($erp_product_id, "int"),
'price_unit' =...
I have this code which theoretically allows me to modify the stock of an item. He reads it, he does not give an error, but he does not modify it.
<?php
$ACCESS_TOKEN="APP_USR-3743017...";
$uso=1;
$detallesART = '{"available_quantity"...
How to consume a call center webservice gave me a url to be consumed by laravel I have the form done and everything else that the parameters send me by jQuery
class CallController extends Controller
{
public function showCall(Request $requ...
I want to implement API of Bing News to be able to show news related to the theme of the page, the problem is that I do not know how to use it, I already obtained the necessary code to be able to make queries to the server, but I d...
I am creating a restful api with the framework Slim3 the data is returned to me with json, but to debug I like more to show the answer with a nicer format.
in% pure co_de I do it using
json_encode($datos, JSON_PRETTY_PRINT);
I hav...
I have a video-attended system in which I use the YouTube API as shown here to upload the videos:
link
Classes charge them asynchronously with ajax, like this:
jQuery.ajax({
type: "GET",
url: cursado....
I want to consume this Api rest link but it does not bring me the key to be able to bring the information well. This is the JSON to try
{ "email": "[email protected]", "password": "candidato2017" }
Here is the documentation about t...
I want to make the query to an api xxxxxx / yyy, just load a view, the problem is that when the page loads I do not receive an answer.
This is my code.
example.ts
ionViewWillEnter() {
this.chats.push("Hola prueba del chat");
t...
I am working with the API of a platform to receive currency quotes minute by minute, I have a way of doing it but it is not very functional and I wanted to check if someone could help me, this is my code:
from iqoptionapi.api import IQOptionAP...