I'm having trouble getting a JSON file from the internet.
I have some data in this link link and I want to get it to use in my application, the link returns something like:
{
"Categorias":[
{
"nome":"Black",
des...
I get a user from a DB via API.
<?php
require "vendor/autoload.php";
use Intercom\IntercomClient;
$client = new IntercomClient(App_ID, App_Key);
$client->leads->getLeads(['email' => '[email protected]']);
?>...
I'm trying to do a test with PHP + MySQL + AngularJS and I was left with a question about how to handle the bank data with angular and send to screen, I have the following codes:
con-bd.php
<?php
....
$conn = mysqli_connect($host, $us...
I have a Click to Call link that returns me a JSON. How do I get the data generated in JSON via jQuery?
Link:
http://192.168.0.6:8080/G4FlexWS/rest/flexuc/clicktocall/ext/telefoneOrigem/telefoneOrigem/telefoneDestino
Return in JSON:...
I'm trying to show the Strings of " specialty " strings that are in my JSON, but when I try to show the count of each "specialty" I can not succeed.
JSON
[
{
"id": "20",
"medico": "ACASIO MENDES",
"paciente": "APARECIDO SOUZA...
I'm having an error when I try to retrieve a field from a array .
Follow json :
{
"data": {
"messages": [
{
"id": 1,
"sender": "[email protected]",
"recipient": "re...
I have an ajax request that sends a large object. That in the browser console is seen like this:
Object {data: Array[4936], paging: Object}
The following is the requisition code:
$.ajax({
type: "POST",
url: "gerararquivo.php",...