All Questions
93,078 questions
-1
votes
0
answers
4
views
Vite React app stuck trying to fetch from old localhost API (ERR_CONNECTION_REFUSED) after migrating to Supabase
Title
Vite React app stuck trying to fetch from old localhost API (ERR_CONNECTION_REFUSED) after migrating to Supabase
Body
I am migrating my React + TypeScript (Vite) project's backend from a local ...
0
votes
1
answer
35
views
Rust Validator on Double Option Fields
I have the following struct for mapping payloads for updating an entity:
#[derive(Clone, Deserialize, ToSchema, Validate)]
pub struct BookUpdateset {
#[cfg_attr(
any(feature = "test-...
-1
votes
0
answers
31
views
How to authenticate with GridDB Cloud REST API using API key vs Basic Auth?
I'm trying to query data from GridDB Cloud using its REST/WebAPI endpoint. The official docs mention both Basic Authentication and API key-based access, but I'm unclear on the exact header format and ...
Best practices
0
votes
0
replies
43
views
is it possible to build a restful service using grpc?
I've a restful service on http protocol, since rest is an architectural style not a protocol is it possible to build a restful service using grpc?
-3
votes
0
answers
30
views
404 error while hitting post api from rest assured, but same post api is working fine from post man [closed]
The url contains https://domain/search/event/@finalise?apikey=value
With body I am hitting the request. ! Getting 404
-1
votes
0
answers
50
views
How to use Polymarket open URLs/APIs to get information regarding market title, market/event ticker, best bid, best ask, liquidity, etc? [closed]
from datetime import datetime, timezone
from pathlib import Path
import pandas as pd
import requests
DATA_DIR = Path("data/polymarket")
def collect_data() -> pd.DataFrame:
"&...
Best practices
0
votes
0
replies
58
views
Best practices integrating multiple external app?
I want to integrate the SAP accounting, zoho books, Quickbook and tally in the single project. what is the best practice to do so that in the future i can add more integrations easily?
If possible can ...
-1
votes
0
answers
24
views
Postman not opening in offline mode [closed]
I'm having issue with opening postman in offline mode i.e. without account login on my organisation laptop. I'm using v11. I can't login because of my organisation policy. I wanted to use workspace ...
Advice
0
votes
0
replies
24
views
End to End Automation of Kofax + FileNet Application
I have to Automate the End to End flow of the Kofax + FileNet Application.
Kofax uploads documents which has some unique ID and some metadata of the document which is further stored in FileNet where ...
0
votes
0
answers
53
views
CyberSource sandbox payments API returning SYSTEM_ERROR
I am testing the CyberSource REST Payments API in the sandbox environment.
POST https://apitest.cybersource.com/pts/v2/payments
Authentication
HTTP Signature using:
• Merchant ID
• Key ID
...
Advice
1
vote
4
replies
118
views
What is an efficient way to aggregate paginated REST API responses in .NET without loading all pages sequentially?
I'm consuming a REST API that returns results in paginated responses (limit + page/offset). Currently, I'm looping through pages sequentially and aggregating results into a List<T>.
Example:
var ...
Best practices
0
votes
2
replies
89
views
How to do a proper error handling in typescript?
This is my first attempt at implementing proper error handling in my project. I realized that as my project grows in complexity, the lack of structured error handling makes development much more ...
Best practices
0
votes
2
replies
68
views
Best API documentation tool for a multi-service architecture (Swagger/OpenAPI vs Redoc vs Postman)?
I’m working on a backend system that follows a multi-service architecture (multiple microservices). Each service exposes its own REST APIs, and we want to provide clear and maintainable API ...
Best practices
1
vote
11
replies
131
views
How to load multiple API responses in one object
I need to load a series of API responses into one object because the item limit in the API is less than the total items. Currently I'm reading the response into a json string and reurning it once.
...
Tooling
0
votes
1
replies
52
views
XBOX API: Getting GS token from XSTS token
I am having dificulty getting GS token, I always hit the error:
{
"code":"OfferingAccessDenied",
"statusCode":403,
"message":""
}
so let ...