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 make a request with Ajax to a web service and this one decuelve an object.
$(document).ready(function () {
$.ajax({
url: "https://www.alphavantage.co/query?function=TIME_SERIES_INTRADAY&symbol=MSFT&interval=1min&a...
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...
I'm doing a REST service through Spring and swagger with CMIS protocol. my service works well until the moment I make simultaneous calls through Jmeter to be able to stress the system.
Context:
the service obtains the ID from an ID creator to ge...
I am receiving a JSON that jersey + jackson parse it directly on the object that will contain the information. The thing is, I want part of that JSON to be saved as a JSONObject or JSONArray .
This would be the JSON that is received,
{...
I have a question about how api rest work, I can not find how to send a request.
I'm trying the shopify api and I have the following code:
$baseUrl = 'https://xxxx:[email protected]/admin'; //Api URL removed for security reasons.
$o...
I'm in trouble some time ago, for the first time I have to implement a client in C # (ASP.NET) that consumes a service exposed by a web application to create clients. I have reviewed different codes on the web like:
link
link
but...
I'm doing a restful service, it returns data like json but but inside an xml and I only want json . Annex image of how the result looks. and my code. I want to remove the highlighted in yellow.
namespace WcfServiceWOM
{
[ServiceContrac...
I'm trying to do a map of a response from a Web REST API . At the moment of doing .map on the object http.get the TypeScript returns this error:
The 'map' property does not exist in the 'Observable'.ts (2339) "type...
I am making an application in which I consume an external service and for this, I am using the library Volley from Google. I'm trying to process the error with the structure:
{
"message": "invalid public_key",
"error": "not_found",
"status":...