Giter Club home page Giter Club logo

Comments (2)

ashishdhingra avatar ashishdhingra commented on June 4, 2024

Hi @TomaszWozniakMosina,

Good morning.

Unfortunately, the issue is not reproducible using the below code (only for demonstration purposes):

using Amazon.CognitoIdentityProvider;
using Amazon.CognitoIdentityProvider.Model;
using System.Threading.Tasks;

namespace TestConsoleApp_NetFramework
{
    internal class Program
    {
        static string userPoolId = "<<user-pool-id>>";

        static void Main(string[] args)
        {
            string email = "<<valid-email-address>>";
            var response = ListCognitoUsers(userPoolId, email).Result;
        }

        private static async Task<ListUsersResponse> ListCognitoUsers(string userPoolId, string email)
        {
            AmazonCognitoIdentityProviderClient client = new AmazonCognitoIdentityProviderClient(Amazon.RegionEndpoint.USEast2); // Set the region endpoint appropriately.
            var request = new ListUsersRequest() { UserPoolId = userPoolId, Filter = $"email=\"{email}\"" };
            return await client.ListUsersAsync(request);
        }
    }
}

Please check if you have configured the AWS credentials properly (with proper IAM policy/permission to list users) in your profile chain to access Cognito service.

Thanks,
Ashish

from aws-sdk-net-extensions-cognito.

github-actions avatar github-actions commented on June 4, 2024

This issue has not received a response in 5 days. If you want to keep this issue open, please just leave a comment below and auto-close will be canceled.

from aws-sdk-net-extensions-cognito.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.