使用Flurl从SharePoint下载文件会导致“配置系统初始化失败”错误

时间:2020-02-13 19:33:23

标签: xamarin.forms app-config flurl

我正在使用Flurl从SharePoint下载文件。 但是,它会导致“配置系统初始化失败”错误。

这是我的代码:

 var url = "https://mysite.sharepoint.com"
                .AppendPathSegment("/_api/web/Shared%20Documents/test.xlsx")
                .SetQueryParams(new
                {
                    api_key = ConfigurationManager.AppSettings["MYAPIKEY"],
                    max_results = 20,
                    q = "Don't worry, I'll get encoded!"
                })
                .SetFragment("after-hash");

                //returns fullpath for App-specific storage, where inventory data is stored
                string fullpath = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData);

                var path = await "https://mysite.sharepoint.com/Shared%20Documents/test.xlsx"
                    .DownloadFileAsync(fullpath);

我添加的API密钥是在Azure AD上生成的。

我怀疑该错误是由我的app.config文件引起的,但是由于我使用的是Xamarin.Forms,因此我最初没有app.config文件。 为了解决这个问题,我使用了PCLAppConfig库,并按照了链接中的描述。

我的问题是,我不确定应在app.config文件中放什么。配置文件的当前内容如下,我尝试了一些不同的操作,但始终遇到相同的错误。

<configuration>
  <appSettings>
    <add key="api_key" value="MYAPIKEY" />
  </appSettings>
</configuration>

如果有帮助,这是调用堆栈:

>   0x3F in GraphTutorial.DownloadFile.Flurlcall at D:\Schule\Diplomarbeit\GraphTutorial\CalendarPage.xaml.cs:35,17 C#
    0x33 in System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start<GraphTutorial.DownloadFile.<Flurlcall>d__1>    C#
    0x38 in GraphTutorial.DownloadFile.Flurlcall    C#
    0x11 in Xamarin.Forms.Button.Xamarin.Forms.Internals.IButtonElement.PropagateUpClicked at D:\a\1\s\Xamarin.Forms.Core\Button.cs:177,47  C#
    0x20 in Xamarin.Forms.ButtonElement.ElementClicked at D:\a\1\s\Xamarin.Forms.Core\ButtonElement.cs:61,5 C#
    0x2 in Xamarin.Forms.Button.SendClicked at D:\a\1\s\Xamarin.Forms.Core\Button.cs:163,32 C#
    0x4 in Xamarin.Forms.Platform.Android.ButtonElementManager.OnClick at D:\a\1\s\Xamarin.Forms.Platform.Android\ButtonElementManager.cs:25,4  C#
    0xD in Xamarin.Forms.Platform.Android.FastRenderers.ButtonRenderer.Android.Views.View.IOnClickListener.OnClick at D:\a\1\s\Xamarin.Forms.Platform.Android\FastRenderers\ButtonRenderer.cs:71,45 C#
    0x13 in Android.Views.View.IOnClickListenerInvoker.n_OnClick_Landroid_view_View_    C#
    0x17 in Android.Runtime.DynamicMethodNameCounter.48 C#

1 个答案:

答案 0 :(得分:0)

发现错误与Flurl本身无关,我使用的网址是实际的问题。

我设法通过使用此查询调用Microsoft Graph API来使其工作:

GET https://graph.microsoft.com/v1.0/sites/root/drive/root:/Subfolder/test.xlsx

在响应中,您将获得属性@microsoft.graph.downloadUrl,该属性可让您下载网址。

以下是一个链接,该链接对我帮助很大: https://docs.microsoft.com/en-us/graph/api/driveitem-get-content?view=graph-rest-1.0&tabs=http