Questions tagged [paw-app]

RapidAPI (formerly Paw) is a REST client for OS X. It supports dynamic variables, multiple environments, and code generation in several languages (including Swift and Objective-C).

RapidAPI (formerly Paw) is a REST client for OS X. It supports dynamic variables, multiple environments, and code generation in several languages (including Swift and Objective-C).

287 questions
5
votes
0 answers

Pre-request scripts in Paw

I want to calculate MD5 hash from all query parameters, sorted alphabetically before a request is made. In Postman it could be done by: var params = []; pm.request.url.query.all().forEach((param) => { …
Andrey
  • 185
  • 8
5
votes
0 answers

"Private Key is Missing" using client certificate; used to work fine

I haven't used Paw in a while. But now requests, which have a client certificate (with private key) in pasted PEM format, no longer work. An existing request saved that I have used many times before will work once; but the moment I click on Options…
cantara256
  • 83
  • 5
5
votes
2 answers

How can I use Paw as a GraphQL client

I've already used most popular GraphiQL client, but it lacks saving and categorizing queries. Does Paw support making graphql request, and writing queries with auto-complete and type-hinting?
Olim Saidov
  • 2,796
  • 1
  • 25
  • 32
5
votes
1 answer

How to remove the default HTTP headers added in Paw?

When creating a simple HTTP HEAD request in Paw, e.g. to http://example.com then Paw automatically injects the Connection and User-Agent HTTP headers. Is there a way to remove those headers completely? I know that I can replace the values of these…
Max
  • 1,387
  • 1
  • 15
  • 29
5
votes
3 answers

Export Paw endpoints to Postman

My team and I use Postman when we work on a project with a REST server. I'm generally the one that builds out the REST server and has all the requests mapped in Postman which I export the collection and commit it in git so the rest of the team stays…
Kus
  • 2,529
  • 27
  • 27
5
votes
3 answers

Using Paw app with JWT

I have an API that I've built that uses JWT for authorization. How would I go about generating an appropriate JWT using Paw? I could just write a simple app to take in all my info and spit out a JWT, but I would rather be able to put the info in Paw…
joncarl
  • 642
  • 1
  • 6
  • 18
5
votes
1 answer

Paw REST Client - generate objects from JSON response

Are there plans for enabling PAW to generate code from the JSON response? Or exponse a javascript API to do that? I would like to generate obj-c or swift classes based on the response.
Victor Bogdan
  • 2,022
  • 24
  • 33
5
votes
1 answer

Passwords stored in Paw file cannot be removed - How to make safe, sharable Paw file?

I'd like to make a paw file that I can share with colleagues that has no passwords saved in it. It seems that no matter how I make the paw file, the password is embedded - not only in the requests, but in revision history. So I cannot test it with…
changokun
  • 1,563
  • 3
  • 20
  • 27
5
votes
2 answers

Hashes not similar between PHP and Paw REST Client

I'm building a HMAC API and I have issues testing the hashing with Paw. On Paw I have this payload: GET:/hello/world:"":9a6e30f2016370b6f2dcfb6880501d7f2305d69bout and a custom HMAC-SHA256 variable (actually function like this that sets it in the…
Vallieres
  • 859
  • 7
  • 19
5
votes
2 answers

Add cookie for Xdebug in Paw

I debug my API using Xdebug and PHPStorm's debugging features. For this to work, the client needs a cookie named XDEBUG_SESSION. When using Postman, I used to use a Chrome extension to add this cookie, and Postman's cookie interception feature to…
robinmitra
  • 604
  • 8
  • 16
5
votes
1 answer

Paste in pre-formatted JSON block

I have a lengthy block of JSON I would like to paste into the body. I see that I can import a file or paste it into the Text area. Is it possible to then convert this pasted text into JSON so I can use the nice JSON editor? When I paste it into…
Spanky
  • 5,608
  • 10
  • 39
  • 45
5
votes
1 answer

Paw http client - chain requests

Anyone have experience chaining http requests using the Paw client? The documentation is sparse. It doesn't explain how to copy cookies from one request to another. The dev may assume that we already know how, but I don't. I'd really appreciate if…
Mike S.
  • 2,048
  • 1
  • 32
  • 55
4
votes
0 answers

Does Paw app support OIDC Authorization_code flow with support. of PKCE

I am trying to establinsh an OAuth 2.0 Auhorization code flow with PKCE support from Okta provider. I try to set it up with the support of the built-in OAuth 2.0 support with advanced options but I don't find a way to tell the get access token…
4
votes
0 answers

How to use boolean variables in Paw?

Are boolean variables supported by Paw? When I import an OpenAPI spec with boolean query parameters, Paw seems to ignore all of that and convert them to strings. Furthermore, if I set a variable to be boolean, it gives a warning that Parameter…
svangordon
  • 872
  • 7
  • 17
4
votes
0 answers

Getting Paw to prompt for a value

How can I get Paw to prompt me to provide a value? E.g. for a name field in a JSON request body such as the following: { "name": [prompt me when I send the request] }
beta
  • 2,380
  • 21
  • 38
1
2
3
19 20