我将google.cloud.storage用于.mp3文件。我之前尝试过,但效果很好。 现在,我编写了另一个使用现有存储功能的新功能。 一切都假设可以正常工作,但是我得到了这个奇怪的错误: “ Google.Apis.Requests.RequestError text-to-speach@XXXXXXXXXXX.iam.gserviceaccount.com没有对objectsound / voiceAnimals20.mp3的storage.objects.create访问权限。 [403]” 我不知道从什么开始。有人可以帮我吗?
确定存储功能在这里:
public static string VoiceStorage(int catId, string URL,
Dictionary<string, int> voicesCounter)
{
Environment.SetEnvironmentVariable("GOOGLE_APPLICATION_CREDENTIALS",
@"C:\wordproject-XXXXXXXXXX.json");
// upload the image storage
//----------------
string voiceName;
voiceName = "voice" + BLLcategory.GetCategoryById(catId).CategoryName
+ voicesCounter[BLLcategory.GetCategoryById(catId).CategoryName]++ +
".mp3";
string bucketName = "XXXXXXXX";
var storage = StorageClient.Create();
using (var f = File.OpenRead(URL))
{
try
{
var res = storage.UploadObject(bucketName, voiceName, null,
f);
URL = "https://storage.cloud.google.com/" + bucketName + "/" +
voiceName;
}
catch (Exception e)
{
throw e;
}
}
return URL;
}
新的不起作用的功能是:
private void button12_Click(object sender, EventArgs e)
{
foreach (COMimageObject obj in BLLobject.GetObjects())
{
if(obj.VoiceURL==null)
{
try
{
string url=BLLtextToSpeach.TextToSpeach(obj.Name);
url=BLLtextToSpeach.VoiceStorage(
BLLimage.GetImageById(obj.ImageID).CategoryID,
url, voicesCounter);
BLLobject.UpdateVoiceURL(obj.ObjectId, url);
}
catch (Exception)
{
throw;
}
}
}
}
在url = BLLtextToSpeach.VoiceStorage行之后发生的捕获 tnx !!
答案 0 :(得分:0)
错误的意思是,文本到语音api的服务帐户在objectound存储桶上没有创建访问权限。转到存储桶权限,然后添加具有存储创建者权限的文本转语音服务帐户。