Questions tagged [advanced-rest-client]

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

74 questions
2
votes
1 answer

Using file as payload in Advanced REST Client

I'm trying to work with the Advanced REST Client of Google. I installed the extension, and I can work with it. Now I wanted to use a JSON-file as input for my payload. The JSON-file looks as follows : {"UserName":"",…
Bart Schelkens
  • 1,235
  • 4
  • 21
  • 45
1
vote
0 answers

AMF parser issue

When using Advanced Rest Client I am getting an error when I try to download one of my projects from Anypoint Exchange. It is a REST asset written in RAML. The mocking service works correctly and the Design Center project displays no errors. The…
1
vote
1 answer

yii\rest\UrlRule with "pluralize" rule is not working in Yii2 REST

I am unable to access default endpoints with pluralize option, view action is also not working Case 1: Access without configure Module 'controllerNamespace' => 'api\controllers', ... 'rules' => [ [ 'class' =>…
Ravee Sunshine
  • 386
  • 1
  • 5
  • 15
1
vote
1 answer

How can I stop Advanced REST Client standalone on MacOS from constantly opening new windows?

While ARC is open, its icon in present in the MacOS dock, as expected. However, every time I click this icon while ARC is not in focus, rather than simply focusing ARC, it opens an entire new window. How can I stop this annoying behavior?
1
vote
2 answers

How to remove/uninstall Advanced REST Client Native Application

Does anyone knows how to uninstall ARC (Advanced REST Client) Native Application? I follow the link provided below to install ARC but there is no information for how to uninstall it. Installation steps are as follow: 1. Click on the link blow…
yas
  • 486
  • 1
  • 8
  • 23
1
vote
0 answers

Using Proxy Ip Address in an HTTP GET request via advanced rest client chrome

I am trying to use a proxy ip address with advanced rest client chrome. But not able to figure out how to do so. For sure there is no built in option for that, but perhaps I might pass some headers to use a free proxy.
rahulserver
  • 10,411
  • 24
  • 90
  • 164
1
vote
0 answers

how to get value of type "application/octet-stream" in http post method web api

When uploading image through Advanced REST client app, I have chosen content type as "application/octet-stream" And here is my code in Web Api controller [HttpPost] [Route("Upload")] public Result Upload(Stream img) …
jenny2509
  • 11
  • 2
1
vote
0 answers

Add the CA signed client certificate to the Advance Rest Client

Hi I would like to add the CA signed Client certificate to the Advance Rest Client. So, How can i add the certificate to the advance rest client ?
1
vote
0 answers

Pass list of objects in GET Request for Spring REST using REST Client

I want to pass list of object i.e. user object which has userId and viewDateTime fields. How we can generate the get URL to hit the service from REST client ? USER POJO : public class User implements Serializable { private static final long…
1
vote
3 answers

req.body isn't appearing as one of key-value pairs, but req.headers and others do

Sample 'Advanced REST Client' Request I'm using Postman and Advanced REST client to create a basic POST request for the following code - 'use strict'; var express = require('express'); var bodyParser = require('body-parser'); var app =…
1
vote
1 answer

Twitter Oauth possible cause for 400 Bad Request response using a simple REST client

I've generated Access Tokens in the Settings/..../ Keys and Access Tokens page and now have a Consumer Key Consumer Secret Key Owner ID (even though this was probably already generated) Access Token Access Token Secret and am using a rest client…
user2403316
  • 178
  • 1
  • 12
1
vote
0 answers

Unable to POST file through curl using advanced rest client

Sending file to a php script works fine with curl from terminal but not through advanced rest client or postman. Curl request- curl -v --form filename=@/cus-check.json --form name=Upload http://127.0.0.1/cus.php When sending the same request…
1
vote
1 answer

Advanced REST client does not send POST data

I have this simple code $_POST['name']); header('Content-type: application/json'); echo json_encode($json); ?> and when i send POST data with Advanced REST cliend, allways have an empty $_POST table.
dios231
  • 714
  • 1
  • 9
  • 21
1
vote
2 answers

Advanced REST client's new update, No session

I've been using Advanced Rest client to test my REST api. Earlier Advanced Rest client used to open as a new tab in chrome. So I could Login into my application in one browser tab and in a new tab I could open Advanced Rest client, call my api's..…
Drunken Daddy
  • 7,326
  • 14
  • 70
  • 104
1
vote
2 answers

Multipart-form-data POST request for Uploading Files

While integrating FreshDesk in my product,I am stuck with Create Ticket with attachment API. I am using Advanced Rest Client for testing APIs.I have seen many forums and questions on the Stack Overflow itself but I am still not satisfied with any…
Priancy
  • 219
  • 3
  • 4
  • 13