93,114 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
60
views
JSON response difference in Spring Boot v3 and v4
I am migrating Spring Boot REST API version 3.x to new version 4 and I am noticing differences in the letter case(upper/lower) in JSON response, I am not using any external JSON parser.
In my legacy ...
1
vote
1
answer
40
views
OAuth "Facebook Platform" "invalid_request" "Application does not have permission for this action - /ads_archive with system user token
I'm using a system user access token, where the user has an assignment to my meta app.
When hitting the ads_archive endpoint for the Meta Ads Library API, it returns the following error in the Meta ...
0
votes
0
answers
67
views
MISTRAL API UPLOAD [closed]
Mistral's documentation states that the API accepts text files (.txt), as well as PDFs, DOCX, and others. Using the Mistral 'files' API, I can easily upload a PDF with the code below. Unfortunately, ...
-1
votes
0
answers
63
views
Handle GET method with RAWG Videogames DB endpoint
I'm trying to do an simple app to have a view of videogames, with the purpose of practicing with express. I have this endpoint to get all the games that the API provides with the URL to see a lot of ...
3
votes
0
answers
41
views
Sonos Control API: /groups/{groupId} and /groups/{groupId}/queue return 404 in Amp-based household deprecated, device-specific, or entitlement-gated?
I’m integrating with the Sonos Control API (v1) and trying to understand the current behavior of group-level endpoints, specifically in a household that primarily uses Sonos Amp devices.
I’ve built a ...
-3
votes
1
answer
57
views
Postman MockServer can't respond
I created a mock server in Postman, and I link it with my collection.
I clicked "Add Example" to my request and I created a response.
But when I make that call, in response I get a 404 with:
...
0
votes
1
answer
47
views
Azure DevOps REST API (Go): How to retrieve all users with permissions on a project? [duplicate]
I’m trying to retrieve all users who have permissions on a specific Azure DevOps project (i.e., the users shown in the project’s Permissions tab).
I understand how to retrieve a list of projects using ...
0
votes
0
answers
27
views
Binance API: Error -1022 "Signature for this request is not valid" on Fiat Withdraw
I hope you're doing well.
I am trying to perform a fiat withdrawal via the Binance API (sapi/v2/fiat/withdraw), but I keep receiving the following error:
{ "code": -1022, "msg": &...
1
vote
0
answers
16
views
Different Results in Power BI API Call
I'm quite new to Power BI API and I was planning to do something to refresh a dataset via API. I have setup the application in Microsoft Entra and able to get the token using Postman API.
I ran into a ...
Best practices
0
votes
1
replies
58
views
What is the best practice to write a Spring Boot class which deals with a REST API?
I have a Spring Boot application which has integration with two different REST services.
One of those integrations is implemented as a @Component and uses RestTemplate. Also it uses only a static key ...
0
votes
1
answer
49
views
Karate Framework # Unable to read the data from JSON while using JSON Array Data Source using read() and karate.setup()
Problem Statement: I am trying to read a Json file into my feature file. This Json contains multiple Json Objects as payloads as shown below. Once I can read, I want to pass that Json Payload as input ...
0
votes
1
answer
74
views
Spring Boot 3.x – 401 response body is empty when received by another service
We are upgrading Spring Boot from 2.7.0 to 3.5.6 and are facing an issue with error responses between two services.
Setup
Service A → sends a POST request to Service B
Service B → handles ...
Tooling
0
votes
3
replies
121
views
Using the Mistral REST API
There are a lot of tutorials for using Mistral's REST API with completion, which gives a CHAT-like equivalent, but tutorials on the 'files' endpoint are nonexistent or don't work. Does anyone have a ...
Advice
0
votes
2
replies
56
views
Integrating and Merging Third-Party API Data with Local Database
Hello I'm currently stuck doing API integration on my project. For background the user can connect a third party invoicing API to their account then they can see and manage those data with the data in ...
Best practices
2
votes
3
replies
67
views
How to configure Spring RestClient to automatically add a query parameter to every request?
I have a Spring Boot application that calls an external API.
The API requires an API key to be passed as a query parameter, for example:
https://api.example.com/data?apikey=123
I want to avoid ...