Category "postman"

Problem scraping Bet365 with headless mode

A few days ago I started the development of a bot to capture data/results from virtual sports (specifically football) at Bet365 (note: I know this is not allowe

Following Twitch API parameters, but error as output

I am using the twitch api just to test it out to fetch the top games I get my app access token after making an app by passing in a POST to: https://id.twitch.tv

Problem with @ModelAttribute while sending POST method with multipart/form-data

I'm experiencing trouble with multipart data for a reason I don't understand. I can't deserialize a Map. Below is the Controller: @Override @PostMapping

Error while creating rest API in postman 500

I'm building an API using nodejs for the web I already have a database and the GET request works but when I try POST it gives me This errorError This is the cod

Cannot run the newman command on windows 10

I tried to install newman globally but no luck and here is what I did: First I installed newman as follows: Then I ran the command newman -h in another command

Postman connect ECONNREFUSED 127.0.0.1:8080

Trying to test an API endpoint and got this error. Could it be my request body? Or is it a network issue? Maybe something I need to change in my proxy settings?

countDocuments() is not working in api call

I am trying to get a count of products using api calls but in postman its keep loading router.get(`/get/count`, async (req, res) => { const productCount =

Unsupported Media Type on postman with form-data

I am facing an issue when trying to post form-data on postman. It works when I use Raw JSON but not with form-data.I've created a web api using .net core and I

(closed) Postman can't be opened properly

I'm trying to open my newly installed Postman when an error occurs which says something like this: **Could not open Postman** Error: Migration: IndexedDB schema

TypeError: Cannot read properties of undefined (reading 'email')

I'm trying to authenticate user. Sign-up is working fine but in sign-in req.body.email is undefined and I can't figure out why. Here is my code for sign-in: rou

Every second API request takes a long time when I send request through browser. With postman request take the fixed amount of time

I use laravel (7 or 8 version no difference), php 7.4 (opcache enabled). axios/fetch(empty request) no difference. browser edge/chrome no difference. What's in

Laravel Sanctum unauthenticated using postman

I follow the Laravel official document step by step. When I send a request to {{host}}/api/login, I can receive the response that includes token. EVerything is

POSTMAN not sending anything in the body in POST requests

I am trying to test the /login API via POSTMAN (via FE it works fine) but it doesn't show anything in the body part even though I am sending body data. but whe

Uploading files Kotlin Spring Boot

So, I am trying to make and upload file(s) functionality, from some blog posts and stackoverflow questions I got this solution: @PostMapping("/file/upload") fun

Uploading files Kotlin Spring Boot

So, I am trying to make and upload file(s) functionality, from some blog posts and stackoverflow questions I got this solution: @PostMapping("/file/upload") fun

Running my postman collections in Azure devOps build pipelines but fails with "401" and a "404" status code

I have exported my postman collections plus environment and global variables and pushed to them to Azure repos, then trying to run API test through a build pipe

Bulk POST/PUT API requests using POSTMAN or any other means

I have a list of API requests which are already in URL format. I just need to POST them one after the other automatically and log their results. The only way I

Getting 400 bad request in Axios but in Postman status 200

I'm trying to request a Power BI API using axios. var configReportInfos = { method: 'get', url: `https://api.powerbi.com/v1.0/myorg/groups/${process.env

Postman test case insetitive

I have a test case in the Postman which looks like: pm.test("Last Name contains Bob", () => { const responseJson = pm.response.json(); pm.response.to

Access res.locals in Multer.diskStorage->filename

I'm working on a login, where the use consists of userImage, userName, userStatus (all send as form-data). To upload the userImage im using Multer. This is how