How to upload pdf on amazon aws??

Given the link you posted, it's highly unlikely you'll be able to obtain permissions to upload to it. S3 buckets do not have public access by default, unless explicitly configured for it. And they're not akin to services like Dropbox or Google Drive, because they're meant to be used as a piece of your backend. Therefore you need to use whatever website/application where you found this URL it because it will be properly configured to write to it.
 
Guys, I think the OP is more interested in uploading in the specific bucket that he posted the url for, not create his own vanilla bucket.



Looking at the url, the bucket probably belongs to Cal Poly (California Polytechnic State University). My starting place for trying to find the form that will let you upload such files would be a Google search like this:
Code:
site:calpoly.edu upload -filetype:pdf
then follow the standard practise of checking whether the form has an upload option, and if it has, keep chrome dev tools open, upload a test pdf and keep an eye on what data is sent and returned during the upload process.
Exactly but Unfortunately All forms on this website are closed now Its actually dead website
 
You can’t upload into that CalPoly bucket — it’s theirs. If you want a similar link, just create your own S3 bucket in AWS, upload the PDF, set it public (or use a presigned URL), and copy the object URL.
 
You'll need to use Amazon S3. Set up an S3 bucket in your AWS account, then you can upload your PDF directly through the AWS Console. To make it viewable like that example, you'll also need to configure the bucket and object permissions for public access.
 
Uploading a PDF to Amazon AWS usually means uploading it to an S3 bucket. You need to create an S3 bucket in your AWS account, then use the AWS Management Console or AWS CLI to upload your PDF file. Make sure to set the correct permissions so the file is publicly accessible if you want to share it via a URL like the example you gave. If you want, I can share step-by-step instructions on how to do this.
 
Use AWS S3 to upload your file, and then set the file permissions to public, since files are private by default.
 
Back
Top