I have API backend and it will be consumed by different consumers like our own company website and even other website can use our API with certain quota/limitation and for this scope management we will be using express-gateway(eg), however this is not the only reason I am using express-gateway(eg). Now coming to my problem/miss-understanding, for our own website we can create api-key and user credentials using eg command. But for the other user who wishes to use our api, I don’t want them to contact me for this integration, rather they should be able to create a user credentials and API key themselves using some facility (let us call it key management) provided by us. Here I am stuck how to give a web platform or any other mechanism where a user can create account and then create api-key for their own website. I was thinking to extend the express-gateway app itself and create page where a website owner can fill the form with various input field that will serve as parameter for eg command and I can trigger eg command in node console and create credentials and save it in redis database and then fetch those information to show it to user as their use rid and api-key. But I want to know the best way how others are doing, like how google, twitter and many more are allowing to create api-key, delete key and regenerate the api-key on compromise. Some suggestion would be to use third party tool to manage user-credentials, I will have little inertia to accept that, even if I do so how will I hook those third-party solution to my express-gateway.
express-gateway API key management
270 Views Asked by Vidalia At
1
There are 1 best solutions below
Related Questions in API-GATEWAY
- Minimizing IdentityServer4 Round Trips in Microservice Architecture with Ocelot
- Using Django as API gateway & authorizations service in Microservice
- Using AWS API HTTP Gateway with HTTP Backend without 301 redirection
- Websocket duplicate on headers
- LocalStack API Gateway Not Triggering Lambda Function from HTML Form Submission
- ApiGateway is not routing the api call
- Handling Microservice Failures in a Consul-Managed Architecture
- How to disable showing default Axis2 services (https://localhost:8243/services/Version?wsdl) in WSO2 API manager 3.2.0?
- Caching : functools vs API Gateway
- disable soap in wso2 api manager gateway https://IPaddr:9443/services
- add custom header at aws lambda authorizer
- Ocelot .NET API gateway: Failed to load API definition
- I want Netty webserver instead of tomcat in my spring-boot project with webflux
- Spring cloud gateway not able to find the service recource
- How to encode parameters for AWS API Gateway (HTTP API)?
Related Questions in IBM-API-MANAGEMENT
- XSLT to remove soap envelope and soap namespaces and process the soap body
- No module named 'ibm_watson.natural_language_understanding_v3'
- Azure Developer Portal: How to update to new version
- Terraform API Management API Policy - All APIs
- Authentication failed when trying to download azure API Management locally
- Azure API Management Policy for validate Request Parameter Values
- Azure Apim Set-AzApiManagementPolicy gives Entity with specified identifier not found
- Azure APIM Validate-Content Inbound policy, Validate Request Body
- Azure api management not hitting azure redis cache when request have more than 10 MB
- How to secure Mule applications traffic
- What is the default timeout set in forward-request
- Update Azure APIM Name (Api.Id) after cloning using Azure Portal?
- Record and Persist API call details in KrakenD for API monetization
- Any API gateway solution which has plugin to output data into Kafka
- Azure APIM Instance - Failed to update API management service hostnames
Related Questions in EXPRESS-GATEWAY
- How to fix HTTPS on express-gateway
- Error: read ECONNRESET while using rabbitmq
- Express gateway always return Bad Gateway when I run with docker-compose or docker
- Enable authorization in express-gateway
- How do I use Cognito with Express-gateway for token validation
- using Express Gateway as load balancer for docker containers
- Express gateway is not able to access the API and bind with nginx proxy,server response: cannot get
- Express Gateway - Authorization
- Express Gateway OAutn2 client_credentials flow sends incorrect value in expires_in
- Problem in integrating web socket microservice with api gateway using express-gateway
- Divide the gateway configuration yaml file into multiple files - Express Gateway
- How to setup basic-auth in express-gateway?
- express gateway doesn't pass multipart/formdata
- Express gateway return redirect 307 instead of forward requests
- Express Gateway detect authenticated user by cookie
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
In general, API gateways and authentication servers are independent, or at least loosely-coupled. The typical workflow is:
Express Gateway includes its own authentication server for convenience, but the steps are basically the same. The difference is that one uses the Express Gateway Admin API to create the user and credentials rather than going to a different server.
Note that Express Gateway and its default account database (reddis) are not persistent out of the box.