how to make aws cognito as authentication in asp.net rest api, That is asp.net rest api will be hosted in IIS and its authentication should be from aws cognito, please give if this is possible?
Related
I need to develop a private API Gateway at the company where I work.
What left me in doubt is that when using amazon cognito's OAUTH2.0, it generates a URL for authentication.
But I didn't find anything on the web talking about such an authentication for a Private API.
This url for authentication of amazon cognito will always be exposed on the internet? Can I develop a Private API with a cognito private authentication url?
You can have a private api with public authentication, but there is no concept of private authentication with the Cognito User Pools hosted UI. End users will be able to authenticate, but not call your api unless they are in the VPC. This blog describes an approach if you don't use the hosted UI.
I am setting up AWS ALB to authenticate using OIDC.
I am getting the below response: error=redirect_uri_mismatch&error_description=redirect_uri%20must%20match%20configuration
How should this be handled.
And for AWS ALB be able to authenticate is there anything special to be done in SFDC side
I am trying to run a cloud run/ cloud functions service through google API gateway. I am using firebase authentication on the gateway as security.
Initially, I had my services private and was getting 403. It gave me 200 once I added allUsers with Cloud Run Invoker to the permissions to the service I am trying to invoke. So I am a bit confused here. Part of the reason I am using API gateway with firebase auth is to protect it against unauthorised calls. And for firebase auth to work, I had to add allUsers, making it public. My understanding was that the API gateway alone would be public while all the backend services that it invokes would be private. In this case, the service can be directly invoked by anyone, rendering the security at the API Gateway useless. How can I setup the backend to private and only respond to authenticated calls through API gateway ?
I'm new to AWS API gateway.We are trying to connect backend service which is outside AWS using mutual TLS from API gateway.
Is this possible using AWS API gateway.If so ,can you please let me know how can we achieve this?
Mutual authentication is not supported by API Gateway. You can setup authentication for your backend using client-side certificates.
https://forums.aws.amazon.com/thread.jspa?threadID=297461
I've been reading everywhere including here and here that WSO2 provided SOAP APIs for its services. My question is where are they? How can I locate them? For example, if there's a XACML API provided by WSO2, how can I find it.
What I understand about the WSO2 platform is that ESB, STS, DSS, IS are all services. To expose their functionalities, you have to write out standard XML, then import it into the WSO2 backend. After this, a WSDL is generated which can be used by a client. Am I right?
If not, then I have simple questions;
What is the endpoint or service url for all IS services?
What is the endpoint or service url for all ESB services?
What is the endpoint or service url for all STS services?
What is the endpoint or service url for all DSS services?
Thanks for explaining.
WSO2 uses Admin services and by default they are not exposed to outside and exposed over https.
You can view the list of services available by by referring this thread.
Another sample on using an Admin service is available here.
Sample developed to create proxy services using Proxy admin service is available here