Replies: 1 comment
-
Powered by https://github.com/Xuanwo/reqsign |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Normally, it's a bad idea. But maybe it's deserved for opendal.
Benefits
Drawbacks
Take
aws-s3-sdk
as example, to make s3 works, we need:And we only use five APIs:
put_object
get_object
list_objects
delete_object
head_object
Apart from s3's signing logic, s3 API is quite simple:
put_object
->PUT /abc/def
get_object
->GET /abc/def
It's not a big burden to maintain those APIs.
Beta Was this translation helpful? Give feedback.
All reactions