Questions tagged [advanced-rest-client]

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

74 questions
0
votes
1 answer

Not able to successfully upload files using signed URL to google cloud Storage from Advanced REST Client

I am trying to create a signed URL and upload files from my PC to google cloud storage using it. I am using Advanced REST Client(ARC) as the client side application. On the server side, I have a jersey based server running on Appengine. I first…
0
votes
1 answer

how to make the following curl request to tradeoff analytics in advanced rest client

How to make the below curl request to IBM Tradeoff analytics using chrome advanced rest client plugin curl -X POST -u "{username}":"{password}" --header "Content-Type: application/json" --data @problem.json …
Subramanian
  • 67
  • 1
  • 10
0
votes
1 answer

Different response time in Google chrome network tab and Rest client addon

I have Rest server which returns a response. My target is to measure response, for this purpose i use two approaches: Addon in Google chrome Advanced Rest client Network tab in google chrome My problem is that response time is different - Network…
pacman
  • 797
  • 10
  • 28
0
votes
0 answers

How to pass parameter to advanced rest client service

I am rest web-service which take single parameter. I am using advanced rest client to test but getting missing parameter error; I am call and passing parameter as…
K.Z
  • 5,201
  • 25
  • 104
  • 240
0
votes
2 answers

"Error: Can't set headers after they are sent" in Express app with Node

I am new to Express and Node, and when testing a protected REST endpoint in my app using Advanced REST Client the data is returned from the endpoint to the Client as expected, however the console logs "Error: Can't set headers after they are…
user2232681
  • 839
  • 4
  • 16
  • 33
0
votes
2 answers

How to use curl's -u options with Advanced Rest Client?

My curl request looks like this: curl -u jdoe@example.com/token:6wiIBWbGkBMo1mRDMuVwkw1EPsNkeUj95PIz2akv \ https://obscura.zendesk.com/api/v2/users.json How can I specify -u option value in chrome's Advanced Rest Client?
Himanshu Yadav
  • 13,315
  • 46
  • 162
  • 291
0
votes
1 answer

How to create a rest client with service endpoint url and no java classes given?

I have been given a rest service endpoint url, http://edc.edu.com:8087/edc/connections/activate and told to generate a client, it's using POST method and no data shall be passed, just a ping to the web service. How to create a client using just a…
enigma
  • 93
  • 1
  • 10
0
votes
0 answers

How can I integrate the chrome Advanced Rest Client Application with my c# website?

I want to post json data by a link to server? I want to integrate chrome Advanced Rest Client Application in my website.How can I do this?
0
votes
2 answers

Can't download files from web services

I am facing a problem while i downloading files from my API web services . When I tested it in advanced rest client . i didn't get my file but i 'v get characters .here is my http://41.128.183.109:1212/api/Data/get filename = claims.jpg screen…
prime
  • 331
  • 1
  • 6
  • 17
0
votes
1 answer

How to test my download files web API in c#

I want to download files from web service . i 've tried to do this but i can't tested it in advanced rest client . here is my code public static HttpResponseMessage FileAsAttachment(string path, string filename) { if…
prime
  • 331
  • 1
  • 6
  • 17
0
votes
1 answer

Cloudconvert File not found (upload failed)

I plan on using cloudconverts API API for converting docx files to pdf but im stuck with a File not found (upload failed) error each time i have started a conversion process and request the status of the conversion. To make sure the file can be…
DTH
  • 1,133
  • 3
  • 16
  • 36
0
votes
2 answers

Post to Django's definition from Advanced Rest Client

Posting values from Advanced Rest client to Django's definition returns "Forbidden(403)" alert looks like CSRF token is missing in the header, What can be done to get rid of this issue? Below is my definition to receive the POST values def…
ABI
  • 1,536
  • 18
  • 38
0
votes
1 answer

Convert Chrome Advanced Rest Client request to AFNetworking 2 request

Need help here, I'm trying to upload a file to a secured API, I was able to upload successfully using the Advanced REST Client chrome extension but when I tried converting it to an afnetworking post request, it always return a request timed out…
-2
votes
1 answer

How interact between a website and REST Client

I have a website that generates different JSON that need to be used in the future request. The request could be done by CURL but I'll use the Advanced Rest Client to send the request. The website is in PHP. Advanced REST Client is a pluggin of…
user7586561
1 2 3 4
5