In this SQL what is wrong?
SELECT
top.id_topatletas,
top.idusuarios,
top.posicao,
top.workout,
top.data_inicio,
top.data_fim,
user.idusuarios,
user.nome
FROM
top_atle...
I have studied about the development of APIs with Laravel, a quick question, is it possible to return an XML instead of a json?
instead of doing:
return response()->json($json);
Do something like:
return response()->xml($xml);...
My code:
import React, { Component } from 'react'
import axios from 'axios'
import PageHeader from '../template/pageHeader'
import cadastroForm from './cadastroForm'
import cadastroList from './cadastroList'
const URL = 'http://localhost:300...
I'm making an application that has phone numbers. To make life easier for users, I would like to return the DDD that is not in some numbers.
Someone knows some API, or something like that to return the DDD according to the city.
I am a student and I have difficulty understanding where I am going wrong in a job that the teacher has passed. Describing briefly, the teacher provided an API in GitHub, which after completing the installation we can add products, suppliers and...
I have a problem that is killing me ...
I'm trying to get the API to be able to get the API data in the table, and it will give the error: Uncaught TypeError: Can not read property 'NAME' of undefined.
And this "NAME" is an array that has in the...
I will have to add a function in the site I am working on that the user will search by name for images on some web finder (this can be Google, Yahoo, Bing and etc.) and the images found will be listed in a div which it can select and it can be u...
I'm using the twitch.tv API. I'm getting all the lives from "fifa17" and listing all the channel names that are doing this live with this game, the URL has 100 results limit ie 100 names, I made a for to list all the names, for...
I need to access the Panoramio API to get some images based on the coordinates I've sent.
However, I'm having trouble receiving the JSON value.
After several searches, all indicate identical code, but the libraries used are discontinued....
I know there are several packages in Node to consume REST API but I need some packages that use cURL . For some reason (which I did not discover) I can not authenticate with existing ones.
I've tried link and link .
...