I am trying to get the identities by <https://www....
# general
m
I am trying to get the identities by https://www.ory.sh/docs/reference/api#tag/identity/operation/listIdentities I am using the go-sdk for this with the following code
Copy code
ctx = context.WithValue(ctx, oryclient.ContextAccessToken, c.oryKey)

	oryIdentities, _, err := c.APIClient.IdentityAPI.ListIdentities(ctx).Ids(ids).Execute()
	if err != nil {
		return nil, fmt.Errorf("failed to list ory identities: %w", err)
here i get a
undefined response type
but i re wrote the same code with go http client and that time i get the response correctly. Can anyone please help?