New features
See original GitHub issueHey,
Very good library, thanks ! I also need fast get and deleteObject very fast 😃 I added get function:
`static get(fileUrl, options, type) { options = Object.assign({}, options, { key: (options.keyPrefix || ‘’), contentType: type });
let url = `http://${ options.bucket }.s3.amazonaws.com/${ fileUrl }`;
let method = "GET";
let policy = S3Policy.generate(options);
return Request.create(url, method, policy)
.send()
.then(setBodyAsParsedXML);
}` But it doesnt work. Any suggestions ? Thanks.
Issue Analytics
- State:
- Created 7 years ago
- Comments:11 (2 by maintainers)
Top Results From Across the Web
iOS 16 - New Features - Apple
See all the latest features, enhancements, app updates, and more in iOS 16 for iPhone.
Read more >New Android features and updates.
The newest features and updates. Messaging and entertainment made better. Powerful photo editing abilities. A huge upgrade to messaging. And new ways to ......
Read more >6 new features on Android this summer - The Keyword
6 new features on Android this summer · 1. Android Earthquake Alerts System is rolling out globally · 2. Star what's important with...
Read more >A Guide to Announcing New Features Effectively - UserGuiding
It is necessary to announce your new features correctly because the announcement will be decisive in whether the new feature will be adopted ......
Read more >Choose when users get new features - Google Workspace ...
As an administrator, you can choose whether new features appear soon after the feature is announced or later by selecting a release track....
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Also working on presigned posts. I’ve used them with straight form-data but RN is proving to be tougher.
a way to get objects from the bucket is very much needed