Json – Connect to API fails with C#
I have tried various C# codes approaches for connecting to an API but cannot so far get it to work. The URL works every time with a Chrome browser. I have looked at many post here on Stack Overflow but…
I have tried various C# codes approaches for connecting to an API but cannot so far get it to work. The URL works every time with a Chrome browser. I have looked at many post here on Stack Overflow but…
I'm using the Postman extension in Visual Studio Code to test my API endpoints. When I send a request and receive a JSON response, the data is displayed in an unformatted, "ugly" structure, making it hard to read (see screenshot…
Problem in calculating the age of majority of a student in Spring Boot I have a Student class with the following attributes: package com.example.estudantes.model; import jakarta.persistence.*; import lombok.Getter; import lombok.NoArgsConstructor; import lombok.Setter; import java.time.LocalDate; import java.time.Period; @Entity @Table(name = "students")…
those who know about node js . Can you help me . I have some error in my js code. By using postman made a code to give res, Req . I used port 5000 in my lap . But…
We have an Azure API which accepts a List<string>. It works fine locally, and it works fine when called by a web page. However, when we call it on the server from Postman, it only works when the string (for…
I am developing this project using Spring Boot for backend and react for frontend, I connected this front end and back end. Then Sign Up and Sign in is working without any error but when I am going to get…
I'm using apiResource using Postman I try to get a specific item ("services"), update and delete by API controller but does not work and returns null values. Here are the details: Services model <?php namespace AppModels; use IlluminateDatabaseEloquentFactoriesHasFactory; use IlluminateDatabaseEloquentModel;…
I have been learning javascript test scripts in Postman.Here I am just learning about callback functions and I wanted to check return value is showing in the last line of print statement but the result shows 'undefined'. Below is the…
Using POST request in Postmat I received a body response as XML data like this. <?xml version='1.0' encoding='UTF-8'?> <S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"> <S:Body> <ns2:getAuthenticationTokenResponse xmlns:ns2="http://some_url.com" xmlns:ns3="http://some_url.com"> <return>111222333</return> </ns2:getAuthenticationTokenResponse> </S:Body> </S:Envelope> And I need to get somehow value 111222333 as a collection variable.…
I am working on a Node.js backend project using Socket.IO and am facing two issues when trying to interact with the Socket.IO endpoints via Postman: 1. Connection and Event Emission Issue on Different URLs: I am able to connect and…