• Resolved bidis

    (@bidis)


    Hi.

    We recently came across an issue where files with Greek letters weren’t being uploaded to our blob storage.

    After some digging we found out that we were getting 403 responses because the $path argument in the _send_request function under the Windows_Azure_Rest_Api_Client class wasn’t being URL encoded.

    We added the following line (1013):

    $path = urlencode( $path );
    $endpoint_url = $this->_build_api_endpoint_url( $path );
    

    Which enabled us to resolve the issue. Could you please include this in a future update?

    Thank you for your time

    • This topic was modified 7 years, 2 months ago by bidis.
    • This topic was modified 7 years, 2 months ago by bidis.
    • This topic was modified 7 years, 2 months ago by bidis.
    • This topic was modified 7 years, 2 months ago by bidis.
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Non encoded URLs with foreign/special characters’ is closed to new replies.