Loop JSON by variable in Postman
I have a JSON response stored in a variablesavedData = {"ID":"{{ID}}","command":"ok"}. Also created an array variableID = [1,2,3]. I want to loop the JSON based on the array variable and apply the...
View ArticleWhatsApp Cloud API: Test Number Not Active After Generation
I am working on WhatsApp integration using the WhatsApp Cloud API. I successfully generated a test number after completing the WhatsApp Business Login process. However, when I try to send a message...
View ArticleDifficulties sending multipart/form-data request via Postman
please, this is y concern: I'll like to know how to query a web service defined as in the below code using postman for test purposes.PS: I can't change the method signatureI have a web service like...
View ArticleError generating Range annotation attribute with NSwag.ApiDescription.Client...
From my client I am calling an API which has a Range annotation on a decimal property: [Range(-0.25, 0.25)] public decimal? MyDecimal { get; set; }In the swagger-json it looks like this:"myDecimal":...
View ArticleHow to auto-format values in Postman Bulk Edit feature?
I have a request responding with JSON data that I need to export as Body (form-data) for another request.When copy pasting the response of the first request to the body of the second request in Bulk...
View ArticleHow to send array index value into JSON body in Postman
I'm chaining several requests to simulate an end to end scenario in Postman.I have an array of values which was returned back from the first request.I've set the array as an environment variable so...
View ArticleBINGX - Signature verification failed due to signature mismatch
I am trying to Place an Order on /openApi/swap/v2/trade/order using Trades Endpoints of BingX with parameter takeProfit. But I'm just getting the response below:{code=100001, msg=Signature verification...
View ArticleGeneral advice for .NET backend junior [closed]
I'm a junior .NET backend developer, I've done a couple projects now and I would like to know what general advice I may have missed since I have had to learn architecture and best practices while...
View ArticleHow to Form WebRequest for Multi part Form data and it's Value?
I have the Rest API Url https://www.box.com/api/oauth2/token. To get the Refresh/Access Tokens respectively. When i try this in PostMan (Chrome Extension) Its working fine. Below i have attached the...
View ArticleProject architecture for geolocated data on a map [closed]
I have a programming question around the project architecture for geolocated data on a map.My goal is to have a map that displays realtime data (timeframe: days/weeks) as markers on a map.As example...
View ArticleHow to send authentication header in ASP.Net for set of web request
I am developing ASP.net application which consumes REST services with ASP.Net Web API. I am trying to use Basic authentication for my website. I plan to use it with SSL once I complete Basic...
View Articlefetch GET returns nothing(204) but works(200) in Chrome DevTools
I am trying to write a GET http call to a site to get game scores. I figured out the x-hsci-auth-token token and it uses Akamai Edge Authorization Token. I get good responses for all but 1 request.For...
View ArticleUploading BLOB/ArrayBuffer with Dropzone.js
Using SharePoint 2013 REST API, I'm successfully uploading files, such as .docx or .png's to a folder inside a document library using Dropzone.js. I have a function where I initialize my dropzone as...
View Articleusing auto-incrementing BIGINT IDs internally as efficient MySQL primary keys...
What are problems with using auto-incrementing BIGINT IDs internally as efficient MySQL primary keys and unique UUID fields as opaque REST API IDs?
View ArticleTools and methods for REST API verification (Postman alternatives)
We have a legacy system w a number of microservices that I am now looking at.Today our API verification for a service consists ofone big postman collectionsome 200 requests they all have scripts for...
View ArticleCan Django identify first-party app access
I have a Django app that authenticates using allauth and, for anything REST related, dj-rest-auth.I'm in the process of formalising an APIMy Django app uses the API endpoints generally via javascript...
View ArticleHow to efficiently bulk insert data into Cloudflare D1 using C# REST API...
I'm currently building a C# (.NET) application that needs to insert a large volume of records into a Cloudflare D1 database using its REST API (raw SQL endpoint).I’m facing two main challenges:When...
View ArticleNo default password encoder configured
@Configuration@EnableWebSecurity@Slf4jpublic class SecurityConfig { @Bean public PasswordEncoder passwordEncoder() { return PasswordEncoderFactories.createDelegatingPasswordEncoder(); } @Bean public...
View ArticleBest practice for sending query parameters in a GET request?
I am writing a backend for my application that will accept query parameters from the front end, and then query my DB based on these parameters. This sounds to me like it should be a GET request, but...
View ArticleQt Inter-Process Communication via REST on local machine
Qt documentation offers several ways of inter-process communication (IPC), including using TCP/IP Qt Network with QNetworkAccessManager, QTcpSocket, QTcpServer classes.But I can't find an example with...
View Article