Questions tagged [advanced-rest-client]

The web developers helper program to create and test custom HTTP requests.

74 questions
318
votes
5 answers

How to download excel (.xls) file from API in postman?

I have an API endpoint and an Authorization token for that API. The said API is for .xls report download. How can I view the downloaded .xls file using (if possible) Postman? If it is not possible using Postman what are the other programmatic ways I…
axnet
  • 5,146
  • 3
  • 25
  • 45
11
votes
5 answers

C# Web API Sending Body Data in HTTP Post REST Client

I need to send this HTTP Post Request: POST https://webapi.com/baseurl/login Content-Type: application/json {"Password":"password", "AppVersion":"1", "AppComments":"", "UserName":"username", "AppKey":"dakey" } It works great in…
CraigJSte
  • 912
  • 6
  • 17
  • 33
11
votes
3 answers

Could not read JSON: Unexpected end-of-input in field name

I am developing a Spring MVC web application. I am not still develop the UI. So I am testing my services using Advance Rest Client tool. My Controller @Controller @RequestMapping("/testController") public class TestController { @Autowired private…
Kasun Kariyawasam
  • 2,306
  • 3
  • 21
  • 35
9
votes
1 answer

Advanced Rest Client Desktop App Self Signed Certificate issue

Recently Advanced Rest client is changed to desktop app instead of chrome extension. Earlier browser used to trust the self signed certs but now this is a desktop app so the same work around is not working. How to trust self signed certs in ARC…
AndRSoid
  • 1,777
  • 2
  • 13
  • 25
5
votes
1 answer

Requests sent from Advanced Rest Client for Chrome are not visible in Fiddler

I have a Web API application running locally. When I access it through a browser, the requests are visible in Fiddler. When I do it through the Advanced Rest Client for Chrome - nothing appears in Fiddler. I am using IIS Express with localhost. How…
mark
  • 59,016
  • 79
  • 296
  • 580
4
votes
1 answer

C# Multipart form-data in HttpClient Post REST API

Below is the code from Postman. I need to send this Body and Header in the POST Request var client = new RestClient("https://azr-stg.dev03.abs.ase.southcentralus.us.wc.net/files/v11"); var request = new…
AdithyaM
  • 139
  • 2
  • 2
  • 16
3
votes
0 answers

Extract video link added dynamically by JWPlayer

I would like to crawl a web page and extracts a video url embedded in the page. I first used Inspect tool and could easily see the embedded link as shown in the picture below: And the target
3
votes
1 answer

Multipart file (not given condition).Error-400(bad request)

My rest api is. @PutMapping(consumes = MediaType.MULTIPART_FORM_DATA_VALUEpath="/{referenceNumber}") public void updateCard(@RequestHeader(value = tenantId) String theTenantId, @PathVariable String referenceNumber,@RequestParam(value =…
3
votes
2 answers

how to delete a saved request in chrome's arc (Advanced REST Client) extension?

How to delete a saved request in chrome's ARC (Advanced REST Client) extension? I currently have ARC extension installed in chrome and some requests saved. I looked for, but didin't find any way to delete a request from the "saved" list. tried to…
Daniel Santos
  • 111
  • 1
  • 8
3
votes
2 answers

how to get ticket details of multiple ticket IDs through OTRS REST URL

Currently i used this URL for single ticket ID: http:///otrs/nph-genericinterface.pl/Webservice/GenericTicketConnectorREST/Ticket/2020?UserLogin=abc&Password=abc123&DynamicFields=1 How can i pass multiple ticket IDs into this URL..
im_mangesh
  • 177
  • 1
  • 1
  • 13
3
votes
0 answers

Chinese characters as a get parameter value on sending a get request

I tried sending a get request on Advanced REST Client through this URL: http://127.0.0.1:8000/report/game/?gamecategory=电子游艺 However an error returned: Exception happened during processing of request from ('127.0.0.1', 51260) Traceback (most recent…
Dean Christian Armada
  • 6,724
  • 9
  • 67
  • 116
2
votes
2 answers

Problem reinstalling Advanced Rest Client

today I saw 2 different versions of ARC in my "Programs and features" Windows 10 list, so I choosed to uninstall the older one because I needed a bit of space. At the end of the uninstall, both of them where disappeared! So, I downloaded the new…
2
votes
0 answers

How to connect to WSS with authorize ID in Advanced Rest Client

I'm absolutely new in WS but have experience with HTTP. I need to test the WebSocket application and I want to connect to WSS with Advanced Rest Client and manually send some requests (as I do it in Postman to test Rest API). The authentication is…
2
votes
1 answer

How to add new project to ARC Advanced Rest Client standalone version

I'm having problem finding a way to add new project. Tried to google but im unable to find option anywhere.
2
votes
0 answers

Connection to Website possible in Chrome App but not in standalone app

I am testing links from a server which is only reachable via a VPN. The test runs perfectly in the chrome app, but when I run it in the standalone app, I get the message: The requested URL can't be reached The service might be temporarily down or…
Michael Walter
  • 1,427
  • 12
  • 28
1
2 3 4 5