This plugin allows you to compare two face images using AWS Rekognition directly from your Bubble app. It uploads both images to your specified S3 bucket, processes them with Rekognition's CompareFaces feature, and returns whether the faces match and the similarity score. Perfect for identity verification, user onboarding, or any scenario that requires automated face comparison via Amazon’s powerful AI services.
Free
For everyone
stars • 0 ratings
9 installs
This plugin does not collect or track your personal data.
Before using this plugin, you need to configure the necessary AWS service permissions for your IAM user. As a suggestion, create a policy as described below and then attach it to your user’s permission list. This will allow you to use the plugin without access limitations for both Rekognition and S3:
{ "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Action": [ "s3:PutObject", "s3:GetObject" ], "Resource": "arn:aws:s3:::your-bucket-name/*" }, { "Effect": "Allow", "Action": [ "rekognition:CompareFaces" ], "Resource": "*" } ] }
Types
This plugin can be found under the following types: