Workflow for creating a Movie Rating Backend in Express and Mongodb
I am given a task in placement training for backend, in that I have to create a backend api endpoints for a movie rating site, It should includeSignup usersAllows admin to add movies, genres,...
View ArticleDesigning a RESTful API to manage data associations internally without...
For some context:I'm developing a RESTful application that allows clients to perform searches across multiple inputs (e.g., Berlin, London, New York) and choose from various API providers (e.g.,...
View ArticleUse access token from Azure AD app to use with sharepoint REST API
I have an Azure AD app registered and my web app requires using both graph-api and REST API to fetch sharepoint account information.For eg:https://domain.sharepoint.com/_api/Web/RoleAssignmentsProblem...
View ArticleHow to resolve empty response from route handler when RSC component?
route handler is as follows:API Path: http://localhost:3000/merchants/{merchatnSlug}/products/apiimport base_url from "@/app/_util/StrapiConfig";import { NextResponse } from "next/server";export async...
View ArticleCalling external Rest API from a Lambda function in java
I am trying to write a lambda function that takes information from lex input, and calls a rest api, passing that information as a parameter, returns a string, which i then want to send to lex as a...
View ArticleHow should data be processed when returned from a Trino database?
I am attempting to fetch data from a Trino database. I send my initial query to the database and get a NextURI. In a while loop after that, I re-check the NextURI to get part of the data until the...
View ArticleImage upload by rest api to TikTok integration via image string generated by...
I am trying to make http multipart request from my app to tiktok, but getting the response**param body.data is invalid,detail:type incorrect,expected type:binary**here is the my code: public function...
View ArticleWordPress api call from react Express server hosted on render.com timeout issue
I have a SaaS software that sends an API call over HTTP to my WordPress site on my react Express server. When the server is hosted locally, I recieve a response from my API call successfully. When I...
View ArticleFCM cloudmessaging.messages.create IAM_PERMISSION_DENIED
We are migrating from HTTP legacy API to HTTP V1 API for Firebase Cloud Messaging (FCM). As per the documentation we have followed all steps by creating Service Account JSON file, get short lived...
View ArticlePowershell Invoke-RestMethod Call using Windows store certificate (Basic...
I would like to call a remote Rest web service from a Windows server hosting the remote certificate. I've exported the certificate from the remote server and added it to the Windwos store....
View ArticleQuarkusRestClientBuilder programmatically doesn't work in AWS Lambda
I have quarkus app and trying to run it as AWS lambda. It's quite simple app with REST client calling some 3rd party services.myRestClient = QuarkusRestClientBuilder.newBuilder()...
View ArticleHTTP GET Request not receiving any response, but working on browser [closed]
I'm trying to fetch some data, specifically from this link: https://nsearchives.nseindia.com/content/trdops/FCM_INTRM_BC20062024.DAT. This link works fine on the browser and when I make a get request...
View ArticleRequest reached the end of the middleware pipeline without being handled by...
I've built a console app which will start as a Windows service but also has a REST API implemented. Unfortunately, when I make a request in the web browser:http://localhost:5000/api/v1/article/1I get a...
View ArticlePass array as query parameter in Postman
I am trying to pass an array as query parameter in Postman. I am calling DELETE method to delete a user from list of databases. It is expecting list of database names as array in the query parameter....
View Article404-not-found-while-running-spring-boot-rest-api
While running springboot restservice application got 404 error. I am using spring boot, jersey rest. I have tried GET requests http://localhost:8080/dunames but not able to resolve. Please help. Model...
View ArticleLog REST API calls in Python
I am working on a data processing task in an enterprise environment with Python3 installed on a client-side Windows Jump server.The data, which I need to download regularly from a third-party provider,...
View ArticleReact RichText not showing in html format?
I've used React Quill for RichText Editor. And also saved data as html format. The Response shows in the Api like below:"education": "<ul><li>Bachelor of Science (BSc) in Computer Science...
View ArticleEmpty Form When Initializing from Rest API
I've Defined a 2 pre-rendering processes1-GEtEmpData : Invoke API (Rest API).2-Initialize form Employee Home Page.The Issue is, when the pages open, the Form is Empty and is not initialized.While I've...
View ArticleHow to validate same name category creation that already exits in database...
I am creating CRUD API for category and products, each category may have many products, but I want to validate that if for example category name "Grocery", I already added (exist in database) and again...
View ArticleUnable to use both route options and a nested resource callback in CakePHP 5.x
I'm trying to use nested restful routing by CakePHP 5, but it seems impossible to use both route options as an array, and nested resource definition as a callback. The following example does not work...
View Article