Questions tagged [httpapi]

26 questions
11
votes
1 answer

Microsoft HTTPAPI/2.0 use Port 80 – Cannot Start WAMP Apache

Microsoft HTTPAPI/2.0 use Port 80 – Cannot Start WAMP Apache. how can i stop microsoft httpapi/2.0 ?
5
votes
1 answer

Add Proxy to HttpRequest in java

I'm trying to understand how can I implement the use of a proxy for each request built like the following using Java API: HttpClient client = HttpClient.newHttpClient(); HttpRequest request = HttpRequest.newBuilder() …
Virgula
  • 318
  • 4
  • 12
3
votes
0 answers

TRC20 curl for getaccount/getbalance

What is the correct curl format to view trc20 balance of an account? I tried the below command, but the output showed no balance. curl -X POST http://127.0.0.1:8090/wallet/triggersmartcontract -d…
krkart
  • 435
  • 4
  • 11
3
votes
5 answers

Segment.io HTTP API not collecting events

The documentation and help for this particular Segment.io is limited and sparse, so I hope it's OK to ask in here. I have just set up a Segment.io workspace and a HTTP API source Per the docs, I sent some POST requests (with Postman) to the…
Jessica Chambers
  • 1,246
  • 5
  • 28
  • 56
2
votes
2 answers

thingsboard send multiple data to device with http api with curl in cmd

i am trying to send two number to thingsboard iot platform. send one data is like this : curl -v POST --data "{"photoresistor":10}" https://thingsboard.cloud/api/v1/nIjlT58Xo81AdU2Pwymm/telemetry --header "Content-Type:application/json" but i do not…
2
votes
1 answer

Passing Complex Filter throw HttpApi in Asp.Net Core 3.1

I've build an Asp.Net Core Controller and I would like to pass Data throw the Url to my Backend. Throw my URI I would like to paste: filter:"[[{"field":"firstName","operator":"eq","value":"Jan"}]] So my URI looks like:…
Homer Tw
  • 85
  • 9
1
vote
1 answer

How do you get the response as a string using the http_url_get method in rpg

Good day, I am trying to consume a get method on a server hosted locally. rc = http_url_get('http://sss:13013/cgi-bi/sendms?' + 'username=cous&pas' + 'to=' + vCell + '&text=' + %TRIM(vSMSText): …
Renier
  • 1,738
  • 3
  • 24
  • 51
1
vote
0 answers

How to find freetime slots during working hours of 8 to 17hrs given an array of busytime slots in a day using php

am trying to write a function to find freetime slots during working hours 8 - 17hrs can anyone help with an algorithm please Can anyone read this array using its index { "starttime": "07:30", "endtime": "08:30" }, …
1
vote
1 answer

How to forward cloudfront to HTTP API with custom domain

I am serving static website with s3 and cloudfront at / path. I want to serve /api/* from HTTP API. My static website is configured properly with cloudfront. And I have also configured the custom domain to HTTP api with cdk But when I try to access…
1
vote
1 answer

How to fix "Unable to load shared library 'httpapi.dll' or one of its dependencies"

I'm a new in linux. But I need to run asp net core app at this os. I build and compile app successfuly in windows 10, but when I move this to linux and try to run get following exception Application startup exception:…
Ilya
  • 45
  • 1
  • 8
0
votes
0 answers

HttpAddUrl returns with error ERR_INVALID_NETNAME

I'm creating a HTTP server by doing the following: retCode = HttpInitialize( HttpApiVersion, HTTP_INITIALIZE_SERVER, // Flags NULL // Reserved ); retCode =…
Ivan Debono
  • 457
  • 3
  • 14
0
votes
0 answers

Does anyone know how to get query from query inspector in Grafana dashboard using http API via api request?

I'm trying to fetch data from query that is located in Grafana dashboard. I have an idea to get results from dashboard but not from the query inspector in Grafana. I have fetched data from dashboard but not from the query inspector.
0
votes
1 answer

Prometheus HTTP API - POST Request

We are working with Prometheus HTTP API, and we're sending GET requests to the following endpoint: /api/v1/query At the beginning things worked as expected, but recently when our queries got bigger, request-URI became too large. Docs says that it…
0
votes
1 answer

Azure Data Factory2's pagination rule (for HTTP API)

The concerning data is updated daily through an HTTP API, and no metadata is available. It consists of +/- 28 columns and 10,000 rows. There is a pagination of 30 applied to the API. It retrieves JSON data and is converted to Parquet through…
0
votes
1 answer

How to access webpages running in Raspberry Pi through Unity project?

There's a webpage running on my Raspberry Pi. I want to access it through a button in a Unity Project. When I click on the button in Unity, it should redirect to the webpage running in Raspberry Pi.
1
2