Questions tagged [advanced-rest-client]

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

74 questions
0
votes
1 answer

how to delete a saved project in Advanced REST client standalone app?

I'm trying to delete unused projects in ARC as they are stacking up. I couldn't find any setting related to this. I found deleting an API call in ARC standalone app(how to delete a saved request in chrome's arc (Advanced REST Client) extension?)…
0
votes
1 answer

Send in http request body param as array - Invalid array

I use extension Advanced Rest client And I want to send POST request with 3 params in body. On of them must be array. I use this but I get error: { "error": { "message": "Invalid array", "param": "payment_method_types", "type":…
Alexei
  • 14,350
  • 37
  • 121
  • 240
0
votes
1 answer

See the request body in ARC

Is there a way to see the request body after I sended to server? I opened the developer toggle inside of ARC, but I access Network tab, I can't see my request. The only request showed is the collective, a request for google analytics.
0
votes
1 answer

Cannot use Advanced Rest Client with Letsencrypt Websites because throws: sslv3 alert handshake failure

My domain is: http://dev.www.triunfamos.com I use Advanced Rest Client ( https://install.advancedrestclient.com/install ) and try to call to mentioned domain It produced this output: The requested URL can't be reached The service might be…
nacesprin
  • 392
  • 7
  • 16
0
votes
2 answers

oAuth 1.0, Advanced Rest Client, Twitter API, Not Working

I've done all the developer.twitter.com setup (created an app and a dev environment). In ARC, I have filled in the Authorization section, choosing oAuth 1.0, filled in the consumer key, consumer secret, token, token secret, and token auth URL. ARC…
0
votes
1 answer

sending file with other post data using advanced rest client?

I've been trying to send file with other post data which is mentioned in picture below also whenever i execute it, i only receive file but not other post data, it says "null" :- Screenshot Do i have to use multipart/form-data for file and other…
0
votes
0 answers

Advanced Rest Client - Dont show response

I had a big problem with ARC. It usually do not show response. I must send that same request many times to get response (sometimes on first request show it, sometimes i must send it 30 times). Application always return some think (i log it), but ARC…
John Smith
  • 19
  • 5
0
votes
1 answer

Error on Advanced Rest Client while sending message

My Advanced Rest Client was working perfectly and sending message. Maybe it send 10 messages, but after that it is showing this message. Please tell me whats wrong with it. Here is the picture of the error Here is my message body { …
s zee
  • 17
  • 5
0
votes
2 answers

How to Create REST Client, the response should be come in JSP page?

I developed server side web services developed with rest. My Code working fine while checking with POSTMAN application. But i want to get the response for all the CRUD operation in JSP page. The every response should be display in JSP page and The…
0
votes
0 answers

Unable to delete environment

When I try to delete an environment, it says 'The list of environments is empty', but there are 5 environments in the list, how can I successfully delete one of them?
Jeffrey
  • 2,095
  • 3
  • 20
  • 36
0
votes
2 answers

How to post image file type in postman or rest client form data?

I did one project in Android (Retrofit) ,I could have gotten response fine in APP,but I don't know how to get response in Postman and Advanced REST client , my issue is how do I send file Type(I don't know what to call it is),In project I achieved…
Lokesh
  • 316
  • 3
  • 14
0
votes
1 answer

SlimFramework3 : how to test POST request with Google Chrome Advanced REST Client?

This is my Slim function : // Add a new task $app->post('/task/', function (Request $request, Response $response) { $data = $request->getParsedBody(); $task = $data['task']; $state = 1; $now = date("Y-m-d"); …
Sami
  • 717
  • 6
  • 28
0
votes
1 answer

How to pass --data "{'myuid':'testuser1'}" while testing Rest API with the RestClient

I am testing the following API in RestClient but I am not getting the response because I don't know how to pass the --data "{'myuid':'testuser1'}". curl -k -v -c cookies.txt -b cookies.txt -X POST -H "Content-Type:application/json" -H…
0
votes
2 answers

Unable to connect to webservice using Chrome Advanced REST Client but able to connect through chrome browser

I need to connect to a third party webservice. When I hit the link directly in the chrome browser, I am able to connect to it and I get a response. But when I tried the same using Advanced REST Client app of chrome, I get a message as 'The service's…
Mpj
  • 11
  • 4
0
votes
0 answers

Best Approach for Replay mechanism

In my project, two application running simultaneously, if one is up and another one is down.(As expected). The application which one is down , from that I'll audit(capture) all failed request and stored into oracle db along with…