第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

如何在c#中使用亞馬遜S3?

如何在c#中使用亞馬遜S3?

PHP
慕慕森 2024-01-20 16:08:09
我想使用 amazon s3 下載文件。我有存儲(chǔ)桶名稱(chēng)、秘密和訪問(wèn)密鑰。什么是區(qū)域端點(diǎn)以及如何設(shè)置它我可以使用我擁有的這些信息下載文件嗎string accessKey="access key";string secretKey="secret key";string bucketName="my bucket name";string directoryFile="File directory";TransferUtility utility=new TransferUtility(client); //download.   --But this line error.Error is:The request we calculated does not match the signature you provided.Check your key and signing method.
查看完整描述

3 回答

?
慕蓋茨4494581

TA貢獻(xiàn)1850條經(jīng)驗(yàn) 獲得超11個(gè)贊

該錯(cuò)誤推斷其存在憑據(jù)問(wèn)題,或者您可能沒(méi)有指定密鑰名稱(chēng) - 通常密鑰名稱(chēng)只是文件名:


string keyName="file.txt";

string bucketName="mybucket";

string directoryFile="C:\\MyDownloadFile";


TransferUtility utility=new TransferUtility(client);

fileTransferUtility.Download(directoryPath,bucketName,keyName); 


查看完整回答
反對(duì) 回復(fù) 2024-01-20
?
慕桂英4014372

TA貢獻(xiàn)1871條經(jīng)驗(yàn) 獲得超13個(gè)贊

檢查憑據(jù)和密鑰名稱(chēng),因?yàn)檫@些值無(wú)效可能會(huì)導(dǎo)致您看到錯(cuò)誤。



查看完整回答
反對(duì) 回復(fù) 2024-01-20
?
蕪湖不蕪

TA貢獻(xiàn)1796條經(jīng)驗(yàn) 獲得超7個(gè)贊

檢查您的目錄和文件名。桌面和服務(wù)器上的目錄不同。


string accessKey="my access key";

string secretKey="my secret key";

string bucketName="my bucket name";

string directoryFile=@"C:\MyDownloadFile"; //Please check your directory access


TransferUtility fileTransferUtility =

    new TransferUtility(

        new AmazonS3Client("ACCESS-KEY-ID", "SECRET-ACCESS-KEY", Amazon.RegionEndpoint.CACentral1));


// Note the 'fileName' is the 'key' of the object in S3 (which is usually just the file name)

fileTransferUtility.Download(filePath, "my-bucket-name", fileName); // check file name as your keyName



查看完整回答
反對(duì) 回復(fù) 2024-01-20
  • 3 回答
  • 0 關(guān)注
  • 221 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢(xún)優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)