Creating an Encryption Code

Hi all

We built a Bubble.io web app for tenant-to-landlord payments. Our bank provided JAVA-based encryption for transactions, which Bubble doesn’t natively support. We need to host the JAVA code externally and connect it via the API Connector.

Can you recommend secure service providers for this integration? Any articles, videos, or guides would also be helpful.

Thanks ! :slight_smile:

Hi there,

Here are a few recommendations for service providers that could help with this integration:

  1. AWS Lambda – AWS Lambda allows you to run Java code without provisioning or managing servers. You can write your encryption logic in Java, deploy it to Lambda, and expose it as an API through AWS API Gateway. This solution is highly scalable and secure.
  2. Google Cloud Functions – Similar to AWS Lambda, Google Cloud Functions lets you run Java code in the cloud and connect it via an API. It’s a flexible and secure solution that integrates well with many platforms.
  3. Heroku – If you prefer a more straightforward platform as a service (PaaS), Heroku supports Java and allows you to deploy your Java code as a web service that can be consumed by your Bubble app through the API Connector.
  4. Azure Functions – Microsoft’s Azure platform also provides the ability to run Java code in the cloud with Azure Functions. You can create a REST API endpoint to securely handle the encryption.

Good luck with your integration! :blush: