Skip to content
Advertisement

Tag: amazon-web-services

JavaScript vs Node.js

I have simple “to-do” application written in JavaScript and HTML. I don’t even have CSS file, just have bit of in-line style in index.html file where I have linked my JavaScript file. No database or any other stuff needed. Simple app using vanilla JavaScript and HTML. I have AWS free tier account and tried zipping .js and .html files and

Format of S3 pre-signed URLs

I’m trying to create an S3 pre-signed URL in my JavaScript code using: After executing, my console log shows: The URL is https://myBucketName.s3.amazonaws.com/myAudioFile.mp3… but I think it should be showing: The URL is https://s3.amazonaws.com/myBucketName/myAudioFile.mp3… Why would it place the S3 bucket name before “s3.amazonaws.com” in the URL? In the past it was working fine using this method. Has the AWS

How to use the code returned from Cognito to get AWS credentials?

Right now, I’m struggling to understand AWS Cognito so maybe someone could help me out. I set a domain to serve Cognito’s hosted UI for my User Pool like what’s described here. So when I go to https://<my-domain>.auth.us-east-1.amazoncognito.com/login?response_type=code&client_id=<MY_POOL_CLIENT_ID>&redirect_uri=https://localhost:8080 I get a login page where my users can login to my app with Google. That part is working great. I’m confused

AWS javascript SDK SES SendMail Illegal Address

I’m attempting to send mail using AWS SES. Here’s the error I’m seeing: Here’s the request object being passed in to SendMail method of AWS.SES for javascript SDK. bob@gmail.com is verified on my account (which is still in sandbox mode). donotreply@kudo.io is also verified on my account. Edit: I just tested it by using the test email option in SES

Advertisement