python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Get the API Key for use Rest API of Hotbit API
I'm going to make an application using REST API of Hotbit API, how is possible to get the API Key?
The REST API of Hotbit are located here: https://github.com/hotbitex/hotbit.io-api-docs/blob/master/r...
domenico
Votes: 0
Answers: 0
Java Jersery: How to handle multiple Queries Parameters for a REST URL with UriInfo
I have implemented a rest Query as shown below:
@Path("list")
@GET
public List<Todo> getTodos(@Context UriInfo uriInfo){
MultivaluedMap<String, String> queryParameters = uriInf...
User27854
Votes: 0
Answers: 1
Using powershell Invoke-RestMethod to GET multipart content
I am trying to process a multipart GET call in powershell and then save the zipfile it contains to disk. I can execute this:
$response = Invoke-RestMethod -Uri $reqUrl -Method Get -Headers $headers
...

Mark Chassy
Votes: 0
Answers: 1