Can I use Bedrock API without signing requests?

0
9
Asked By CuriousCoder42 On

I'm exploring whether it's possible to invoke the Bedrock agent runtime API using raw curl commands without needing to sign the requests. In Postman, there's a straightforward way to manage AWS signing with access ID and secret key. After generating a Bedrock API key, I've noticed that signing is required for requests. I'm looking for alternatives to hit the agent directly, bypassing SDKs or command-line tools. If the signature has a long expiry period, I thought I might be able to calculate it in advance and just use it during testing.

1 Answer

Answered By LambdaGuru99 On

You might want to consider creating your own HTTP API with AWS Lambda, which would allow you to call the Bedrock API without signing every request directly. You can expose it as a standard HTTP API and secure it with your own custom API key.

TechExplorer07 -

That sounds like a solid plan! I like the idea of writing our own wrapper code to bypass the signing hassle.

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.