小编gam*_*846的帖子

如何将 Json 文件添加到 Xamarin Forms?

当我尝试获取 Google Auth Creds 的 Json 文件时,出现文件未找到错误

            using (var stream = new FileStream("client.json", FileMode.Open, FileAccess.Read))
            {
                credential = GoogleCredential.FromStream(stream)
                    .CreateScoped(Scopes);
            }

            service = new SheetsService(new Google.Apis.Services.BaseClientService.Initializer()
            {
                HttpClientInitializer = credential,
                ApplicationName = ApplicationName,
            });
Run Code Online (Sandbox Code Playgroud)

我试图将文件存储在资产中并尝试过

Assets.Open ("client.json")
Run Code Online (Sandbox Code Playgroud)

它给出了同样的错误

我在这里错过了什么?

c# android google-sheets xamarin.android xamarin

2
推荐指数
1
解决办法
955
查看次数

标签 统计

android ×1

c# ×1

google-sheets ×1

xamarin ×1

xamarin.android ×1