I am working on a project that involves integrating with an API endpoint for user registration. Currently, I have deployed a Cloud Run service with a URL that receives the requests. I have stored the private and public keys in Secret Manager, and I need to fetch them for use. The API requires signed data as part of the request payload, and I need guidance on implementing the signed data generation correctly.
Solved! Go to Solution.
Hi @Nikita_G,
You're on the right track with using Cloud Run and Secret Manager for securing API interaction. Here's a comprehensive breakdown on how to implement signed data generation and integrate with your API endpoint:
1. Fetching Keys from Secret Manager
2. Implementing Signed Data Generation
3. Verification on the API Side
I hope the above information is helpful.
Hi @Nikita_G,
You're on the right track with using Cloud Run and Secret Manager for securing API interaction. Here's a comprehensive breakdown on how to implement signed data generation and integrate with your API endpoint:
1. Fetching Keys from Secret Manager
2. Implementing Signed Data Generation
3. Verification on the API Side
I hope the above information is helpful.