Hello, I'm developing an Engine in Rails 5 where it will be just a blog API. It will be a simple system. Post has several Passions and Passions has several Posts. I made the N < - >
The problem is that when sending the JSON of the post...
foreach ($result as $indices) {
// Aqui ele retorna 50 registros por conuslta
echo $indices['Empreendimento'];
// Provavelmente preciso de um loop da paginação aqui dentro
// para falar para o foreach que enquanto houver paginaç...
In the example below, how do I not serialize an attribute.
I think I'm looking for the equivalent of the java syntax:
For classes: @JsonIgnoreProperties (ignoreUnknown = true);
For attributes: @JsonIgnore for attribute.
public class Some...
The webservice in visual studio 2013 works beautifully. I added it to windows 8.1's IIS, and when it comes time to send the data via REST, it gives me this error:
The server encountered an error while processing the request. See the servic...
When I made my first API rest, I defined my JSON structure and it always returned the same structure even the pair having given it or not. I talked to a new co-worker and he introduced me to another perspective. If the pair has not given it, it...
I have an application in Delphi that sends an XML with a code via Post . I have to develop an application in Symfony that needs to validate the receipt of this XML via post. Listening to say it would be via Rest but I've never used Rest.
I w...
Inside the Rest architecture we have the verbs POST , GET PUT and DELETE .
Among the various examples and tutorials I studied. The use of the DELETE verb is always exemplified with DELETE /addresses/1 , where I...
I'm doing a Restful web service, is OAuth the best way to authenticate and work with token?
Is it possible to use OAuth2 to authenticate via username and password?