amazon-archives / aws-sdk-unity

ARCHIVED: The aws sdk for unity is now distributed as a part of aws sdk for dotnet:
https://github.com/aws/aws-sdk-net
Other
105 stars 43 forks source link

CognitoAWSCredentials.RemoveLogin do not work..... #114

Closed incago closed 8 years ago

incago commented 8 years ago

When I unlink facebook with identity using RemoveLogin the identity become unaccessable to identitypool... and in dashboard the identity is still linked to facebook.. anyone have same issue?

turacma commented 8 years ago

Remove login simply removes the login from the local dictionary. If you want to completely disassociate a facebook login from an identity you would need to use the low level UnlinkIdentity method. Note, it is not possible to transition an identity back to unauthenticated; unlinking the Facebook login will cause the identity to become disabled completely.

incago commented 8 years ago

Thanks for reply.