AWS signature authentication is not present in Studio HTTP request

Hi All,

AWS signature authentication is not present in Studio HTTP request.
How to achieve this.
can anyone help with the best possible solutions.

Thanks,
rds

There are specific activities for AWS.

https://docs.uipath.com/activities/other/latest/it-automation/about-the-amazonwebservices-activities-pack

Hello @rds0511

You can try this Steps:

  1. Install AWS SDK: Make sure you have the AWS SDK installed in UiPath Studio. You can do this using the NuGet Package Manager.
  2. Set AWS Credentials: Configure your AWS credentials (Access Key ID and Secret Access Key) either directly in your UiPath workflow or use IAM roles if running on AWS EC2.
  3. Create an HTTP Request: Use the “HTTP Request” activity in UiPath to build your request to the AWS service, specifying the URL and HTTP method (GET, POST, etc.).
  4. Add AWS Signature to Headers: Calculate the AWS signature, typically using the AWS SDK for .NET or custom code. Add this signature to the request headers, including the “Authorization” header.
  5. Handle the Response: Once you’ve added the signature, send the request, and handle the AWS service’s response in your UiPath workflow.
  6. Error Handling: Implement error handling to deal with any issues, like authentication failures or network problems.

thanks vinitha. let me check on that.

Thanks Paul. I am checking on that.

Did you find the solution to this ?