12,720 questions
0
votes
0
answers
14
views
Run multiple postman files in parallel
I want to run postman tests using newman in parallel
I am using the below script
- |
newman run tests/postman/test1.postman_collection.json -e tests/Development.json &
newman run tests/postman/...
-4
votes
0
answers
35
views
Postman backend API and Angular Application [closed]
I need help getting my angular application to communicate with my backend api. I need my product to look like the attached image. I currently am using postman that takes JSON data, and it works ...
-2
votes
0
answers
24
views
grpcurl able to call grpc reflection but postman and insomnia fail with unimplemented
I have a gRPC service (not using TLS).
When I run grpcurl -plaintext localhost:50051 list, I get a valid response and can successfully interact with the service.
However, when I try using Postman or ...
0
votes
0
answers
22
views
"Connection broken: IncompleteRead(50454677 bytes read, 35845891 more expected)" upon fetching large Collection from Postman API
Upon fecthing a large collection item from Postman's API I get the following error:
RuntimeError: Chunked transfer error: ('Connection broken:
IncompleteRead(50454677 bytes read, 35845891 more ...
-2
votes
1
answer
34
views
Why is Postman not opening my request tabs? [closed]
While using Postman I have a ton of collections, each with their own requests under them, but whenever I try to open any of them (or create a new request) Postman simply does not react.
If I do Menu -&...
0
votes
0
answers
13
views
How to count the keys of key in postman? [duplicate]
I'm learning testing in postman and I want to show the number of items inside a key. I'm working with the following API: airportGap.
The question is the following:
How can I count the elements of ...
0
votes
0
answers
35
views
FastAPI 422 Unprocessable Entity when using Postman (works in Swagger UI and curl) [duplicate]
I'm building a simple FastAPI POST endpoint that accepts a JSON body. Everything works perfectly when tested via the Swagger UI, Python's requests, and curl. But when I test the same request using ...
0
votes
1
answer
34
views
Getting All Workspaces ClickUp
I'm trying to get all workspaces from an organization on ClickUp. In the UI I have three workspaces as shown below.
I'm trying to get all these workspaces by making an API call in postman. Get https:/...
-3
votes
2
answers
66
views
Why am I not getting any response in the postman? [closed]
import {createServer} from 'http'
const PORT = process.env.PORT
const users = [
{id:1, name:"Jim"},
{id:2, name:"Dwight"},
{id:3, name:"Michael"}
]
const ...
-1
votes
0
answers
21
views
Zephyr Squad add on is not Active -issue
I have implemented Postman Zephyr integration using Zephyr Squad Api in my project.
While iterating with the Zephyr Squad Api's is giving me this issue mentioning "Access forbidden since Zephyr ...
0
votes
1
answer
82
views
Intermittent "Error parsing HTTP request header" when calling API in Spring Boot 2.7.4
I'm facing an issue that I can't seem to resolve, as I have difficulty identifying the root cause. I hope to find some help here.
I have a web service coded in Java Spring Boot version 2.7.4, with a ...
0
votes
0
answers
40
views
Spring Security JWT Returns 403 Forbidden on Endpoints
SO I am building a Spring Boot application using Spring Security with JWT authentication. I’ve implemented a JwtAuthenticationFilter and configured it in my SecurityConfiguration, but I keep getting ...
0
votes
1
answer
90
views
Why do I get "Could not complete OAuth 2.0 token request" Error on POSTMAN?
I am trying to get my token from spotify api using POSTMAN and I received Error: Could not complete OAuth 2.0 token request I am using OAuth2.0 as my Auth Type.
I already have auth code using https://...
-1
votes
1
answer
51
views
Run several requests with different number of data from csv on Postman
I have one .csv file with some data for my Postman like this:
Name,City
Jhon,New York
Lucy,London
Adam,
Alex,
and i have one collection with 2 reqs:
- GetAge
{
{{Name}}
}
- GetInfoCity
{
{{City}}
}
...
0
votes
0
answers
31
views
How to use mpgs with ca certificate postman
I am trying to integrate Mastercard Payment Gateway Services (MPGS) and need to make API requests using a CA certificate in Postman. However, I am encountering issues with authentication and SSL ...
0
votes
1
answer
71
views
Error submitting data: Failed to fetch, while submitting html css, js form data to google sheets
step1.html
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, ...
1
vote
1
answer
83
views
Invalid end of a number. Expects Delimiter
I'm having issues getting datetime into a db from post man API calls. What I have is a body that accepts the following:
POST Call in PostMan
HTTP://localhost:5000/api/ticket
Pre-Script
var now = new ...
2
votes
1
answer
92
views
Why does Postman throw a 400 status for this POST request with a pre-request script?
I'm working on an API REST with SpringBoot and I'm trying to create multiples users from Postman with a Pre-request script, but I get a 400 status code even when the users are save in the DataBase
&...
0
votes
0
answers
19
views
How to document input and output fields in Postman collection?
I have a Postman that I have to document, I found the document page but it seems to let me add just some descriptions.
Let's say this is a REST API service with json input, is there any way to ...
0
votes
2
answers
61
views
Connecting to MonogDB database suddenly leads to unknown "Unexpected end of JSON input" Error
Everything was going well, after creating GET, POST, PUT, Delete Routes connecting to a database on MongoDB collection -using Node.js and Express- , after more than one successful run, out of nothing ...
1
vote
3
answers
528
views
Spring Boot: Visualize image on Postman
I have this endpoint:
@GetMapping("/thumbnail/{imageName}")
@PreAuthorize("hasRole('BASIC')")
public ResponseEntity<InputStreamResource> natalChartThumbnail() throws ...
0
votes
0
answers
37
views
How to send request to API that uses MessagePack with MagicOnion using Postman
I have an API that is using MagicOnion and MessagePack in .NET. I am using swagger like this:
public static IServiceCollection AddMagicOnionServices(this IServiceCollection services)
{
services....
-2
votes
1
answer
34
views
Can't use Acumaica RestAPI
I currently host Acumatica on my computer. I was able to access the Acumatica website (localhost) via the browser. However, when I try to log in via Postman, I keep getting error code 400. What do I ...
0
votes
0
answers
24
views
Postman doesn't work upon entering the program
I installed Postman, registered, but when I log into the application I get the error Unable to connect to our servers
I tried restarting the program and installing it again
it turns out to open only ...
0
votes
1
answer
34
views
Postman Mock Server Template Helpers with XML
I'm trying to set up a postman mock server that has an XML response body and request body and I'm having trouble pulling a value from the request into the response when it comes to doing it with XML. ...
1
vote
1
answer
77
views
Azure DevOps Pipeline ##[error]Unable to locate executable file: 'newman'
I'm using free Azure DevOps and created a release pipeline, purpose is verify the APIs during release,while executing the agent on step 3 its showing error message.
Image Newman Cli
Image Agent Task ...
0
votes
1
answer
352
views
Getting error while creating access token using OAuth 2.0 for MS Fabric
In Postman I am trying to generate Access token using Oauth2.0 for MS fabric Update API call.
I have entered below details
POST https://login.microsoftonline.com/tenant-ID/oauth2/v2.0/token
Under ...
0
votes
0
answers
43
views
SpringBootSecurity CSRF token does not work in angular but in postman
I am currently working on the csrf protection inside a SPA application.
Project-Structure (Code-Snippets will be below)
In the backend I have defined a SecurityConfigurator in which I enable CSRF with ...
0
votes
1
answer
58
views
When trying to register an admin user via Postman, i are receiving the default Laravel welcome page instead of the expected JSON response
Steps to Reproduce:
Open Postman and create a new POST request.
Set the URL to http://127.0.0.1:8000/api/admin/register.
Set the Headers:
Content-Type: application/json
Set the Body (JSON):
{
&...
0
votes
1
answer
63
views
How to get Data from the SD card from a HikVision camera?
I have a Hikvision camera that scans license plates and then saves them to the SD card.
I use ISAPI for queries. How can I receive all scanned vehicles that are on the SD card with the specified from-...
0
votes
0
answers
19
views
TALQ Pass-through Test - Request succeeds but Response fails (Network unreachable)
I am currently working on integrating TALQ protocol for smart city communication between CMS (Central Management System) and Gateway. While testing with the TALQ Certification Tool (TCT), I ...
1
vote
1
answer
101
views
403 Forbidden for MS Fabric POST call
Getting error while calling MS Fabric API using POSTMAN. I have no body in the POST call. Where is it restricted? Why is it forbidden?
https://api.fabric.microsoft.com/v1/workspaces/31015eb5-a60f-...
0
votes
0
answers
38
views
Postman - No aggregation method when adding params
Receiving a 400 Bad Request when adding params to a get request for the Logiwa IO API.
List Product - https://mydeveloper.logiwa.com/#tag/Product/paths/~1v%7Bversion%7D~1Product~1list~1i~1%7Bindex%7D~...
0
votes
0
answers
11
views
Is it possible to structure requests in Postman using inline fragments https://graphql.org/learn/queries/#inline-fragments?
Here is the instruction how to create GraphQL Requests in Postman. But I can't find an example how to create request if I need inline fragments(https://graphql.org/learn/queries/#inline-fragments)
0
votes
1
answer
64
views
How to Scrape Data from Bayut (DLD-Validated Properties) Without Getting 401 Error?
I'm scraping real estate data from Bayut using Scrapy but can't extract thethe green tick (DLD-validated info)
The information is fetched via a POST API with basic authentication.
Calling the API in ...
0
votes
0
answers
36
views
Error: 400 - {"message":"Invalid json data"} While using Post method in Unity
I am trying to send a PUT request using UnityWebRequest to update game data on a server. However, I keep getting the error:
css
Copy
Edit
Error: 400 - {"message":"Invalid json data"...
0
votes
1
answer
141
views
Why are all routes returning 404 in my ASP.NET Core API?
I'm building a simple API with ASP.NET Core and I'm having an issue where all of my routes are returning a 404 error. My OrderController is correctly defined with appropriate HTTP verbs (GET, POST, ...
-3
votes
1
answer
53
views
Cannot POST /api/v2/tasks/
I'm working on a task management system using Node.js, Express, and Prisma.
I have a TaskController that handles CRUD operations. Creating and retrieving employees work fine, but when I try to create ...
0
votes
1
answer
61
views
Firestore gRPC Listen does not send deletions
I am using Postman to call the firestore.googleapis.com gRPC Listen. I am using the web UI (https://console.firebase.google.com/) to manually make changes to a Firestore for testing purposes. When I ...
0
votes
1
answer
79
views
How do I call a secure web socket using Stomp and Spring-Messaging from Postman?
I have the following demo app this includes a JWTDecoder I can add to fake real auth
@Configuration
@Profile("fake-jwt")
class FakeJwtConfig {
@Bean
fun jwtDecoder(): JwtDecoder {
...
0
votes
0
answers
39
views
ERROR Trace System Zipkin returns empty array
Please help me.
I adocker run -d -p 9411:9411 openzipkin/zipkin to run zipkin locally. Then I use swagger zipkin to test it.
The ploblem is that when i post the default span with the swagger like this ...
1
vote
1
answer
134
views
How do I call a STOMP message with Postman using injection (Using Kotlin)?
I have the following...
@MessageMapping("/hello")
@SendTo("/topic/greetings")
@Throws(Exception::class)
fun greeting(message: TestMessage): Greeting {
However, when I run and send ...
0
votes
0
answers
22
views
Can Postman be configured with functionality of hosts file to override hostname-IP address mapping?
I need Postman to override default name resolution and use my custom hostname->IP address mapping. I realize I can use hosts file for this but prefer to do it directly in Postman if possible.
0
votes
2
answers
210
views
Access Denied (403) When Downloading File via Microsoft Graph API Using Shared Link
I am trying to share a file from OneDrive using Microsoft Graph API and then allow another user to download it. However, when I attempt to download the file using the shared link, I receive a 403 ...
-1
votes
1
answer
79
views
Why is Lombok's @Getter not generating getter methods
Lombok's @Getter is not generating getter methods for my entity.
I've tried writing getter myself and it works(but I don't want that obviously).
I've searched solutions on stackoverflow and most of ...
0
votes
0
answers
71
views
Apache Superset /api/v1/dataset/ is not working for uploading the new csv file as creating a new dataset
I am new to Apache Superset and I am trying to create a new dataset by directly uploading the CSV file using /api/v1/dataset/. Here is what I am trying to do using Postman.
curl --location 'http://...
0
votes
0
answers
76
views
call update API if data exists in database from store method'
I’m building a Laravel API, and I need to implement a logic where:
First, I check if a particular record exists in the database table
1.If the record exists, I want to call an external update API with ...
0
votes
0
answers
140
views
Postman won't upload local file using PUT
We have a web service that does some cloud file manipulation. I can upload and copy files with HTTP PUT requests using clients such as Chrome and Windows Explorer. (We support WebDAV.) I can not ...
0
votes
1
answer
52
views
Post Api request Flutter
I have to make a Post Api Request using Flutter.
The Postman screenshot is attached for reference. can someone help me with the code
[1]: https://i.sstatic.net/VQ23OMth.png
Here is the code sample ...
0
votes
1
answer
57
views
Error on calling Azure Get blobs zip API, parameter blobsID
I tried to called the API from Azure like this on Postman:
On headers i have:
Authorization : Basic AAAAAAAAAAAAAAAAAAAAAA
Content-Type : application/json
Accept : application/zip
Whith everything ...