polyrabbit opened a new pull request, #692:
URL: https://github.com/apache/opendal-reqsign/pull/692

   When using PrivateLink to access OSS, users must use the path-style access 
method. For more information, see
   https://help.aliyun.com/zh/oss/user-guide/access-oss-via-privatelink-network
   
   But `reqsign` currently does not support path-style signature, it always 
duplicates the bucket name in the path, which causes signature failure. A valid 
string to sign should be like:
   ```
   GET
   
   
   Wed, 25 Feb 2026 13:53:35 GMT
   /test-bucket/
   ```
   
   whereas the current code signs this:
   ```
   GET
   
   
   Wed, 25 Feb 2026 13:52:33 GMT
   /test-bucket/test-bucket
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to