在 Azure Functions 上使用 AdWords API

Posted

技术标签:

【中文标题】在 Azure Functions 上使用 AdWords API【英文标题】:Using AdWords API on Azure Functions 【发布时间】:2018-06-22 19:11:43 【问题描述】:

我正在尝试创建一个使用 AdWords API 的 Azure 函数。我的代码工作正常,我所要做的就是让函数以给定的时间间隔运行。 但是,当我尝试在本地运行该函数时,我收到以下错误消息:

[22-Jun-18 19:08:58] Executed 'KeywordPlanner' (Failed, Id=ab7c3ecf-1238-4370-ab5b-17d547d354b3)
[22-Jun-18 19:08:58] System.Private.CoreLib: Exception while executing function: KeywordPlanner. System.Configuration.ConfigurationManager: Configuration system failed to initialize. System.Configuration.ConfigurationManager: Unrecognized configuration section system.serviceModel. (C:\Users\frede\AppData\Local\Azure.Functions.V2.Cli\func.dll.config line 204)

如果我尝试上传函数并运行它,我会收到此错误:

2018-06-22T18:50:35  Welcome, you are now connected to log-streaming service.
2018-06-22T18:50:40.967 [Information] Executing 'KeywordPlanner' (Reason='This function was programmatically called via the host APIs.', Id=321756f7-3cf1-4235-a741-daf97d304058)
2018-06-22T18:50:40.972 [Error] System.Private.CoreLib: Exception while executing function: KeywordPlanner. Google.AdWords: Could not load file or assembly 'System.Private.ServiceModel, Version=4.1.2.1, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. The system cannot find the file specified. System.Private.CoreLib: Could not load the specified file.
2018-06-22T18:50:41.039 [Error] Executed 'KeywordPlanner' (Failed, Id=321756f7-3cf1-4235-a741-daf97d304058)

我使用的是 .NET Standard 2.0。

我可以做些什么来修复这个错误并让我的函数运行?

更新:

在 Jerry Liu 的帮助下解决问题后,我收到以下错误:

2018-06-25T07:43:20.517 [Error] System.Private.CoreLib: Exception while executing function: KeywordPlanner. System.Net.Http.WinHttpHandler: WinHttpHandler is only supported on .NET Framework and .NET Core runtimes on Windows. It is not supported for Windows Store Applications (UWP) or Unix platforms.
2018-06-25T07:43:20.679 [Error] Executed 'KeywordPlanner' (Failed, Id=4231f32f-f83f-4f37-99a7-b90484933e2f)

【问题讨论】:

【参考方案1】:

更新

问题现在正在跟踪here。运行时文件夹 [FunctionProject]\bin\Debug\netcoreapp2.1\bin\runtimes 中的程序集不会加载到函数上下文中。

在@Adrian 的帮助下,问题WinHttpHandler is only supported on .NET Framework and .NET Core runtimes on Windows 是由于从库%USERPROFILE%\.nuget\packages\system.net.http.winhttphandler\4.4.0\lib\netstandard2.0 复制的错误程序集导致的,而我们需要运行时程序集。

解决方法是将这些运行时程序集复制到bin 文件夹以使其由函数主机加载。安装Google.AdWords 24.1.0 后,右键单击项目,Edit <FunctionProjectName>.csproj 添加复制操作。有了 nuget 包的完整路径,我们不必先将程序集复制到我们的项目中。

请注意,一旦我们安装了新版本的包,这些路径可能会改变。

  <!-- For publish -->
  <ItemGroup>
    <None Include="$(USERPROFILE)\.nuget\packages\system.private.servicemodel\4.4.2\runtimes\win7\lib\netstandard2.0\System.Private.ServiceModel.dll">
      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
    </None>
    <None Include="$(USERPROFILE)\.nuget\packages\system.net.http.winhttphandler\4.4.0\runtimes\win\lib\netstandard2.0\System.Net.Http.WinHttpHandler.dll">
      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
    </None>
  </ItemGroup>
  <!-- For local debug -->
  <Target Name="CopyRuntime" BeforeTargets="Build">
    <Copy SourceFiles="$(USERPROFILE)\.nuget\packages\system.net.http.winhttphandler\4.4.0\runtimes\win\lib\netstandard2.0\System.Net.Http.WinHttpHandler.dll" DestinationFolder="$(OutputPath)\bin" />
    <Copy SourceFiles="$(USERPROFILE)\.nuget\packages\system.private.servicemodel\4.4.2\runtimes\win7\lib\netstandard2.0\System.Private.ServiceModel.dll" DestinationFolder="$(OutputPath)\bin" />
  </Target>

【讨论】:

谢谢,成功了!我现在确实收到了一个关于System.Net.Http.WinHttpHandler 的新错误。我在问题中添加了错误日志。你也知道如何解决这个问题吗? @FrederikHansen 还没找到解决办法,稍后我会做一些测试并通知你进度。【参考方案2】:

that Jerry describes 的相同解决方法将适用于 WinHttpHandler 问题。我的 Azure Functions v2 项目文件中有以下内容:

<ItemGroup>
  <None Update="System.Private.ServiceModel.dll">
    <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  </None>
  <None Update="System.Net.Http.WinHttpHandler.dll">
    <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  </None>
</ItemGroup>
<Target Name="CopySPSM" BeforeTargets="Build">
  <Copy SourceFiles="System.Private.ServiceModel.dll" DestinationFolder="$(OutputPath)\bin" />
  <Copy SourceFiles="System.Net.Http.WinHttpHandler.dll" DestinationFolder="$(OutputPath)\bin" />
</Target>

FWIW,似乎只有在您尝试向 Google Ads API 发出服务请求时才需要添加 WinHttpHandler - 如果没有它,报告请求和响应工作正常。

【讨论】:

拍得好!我看到 System.Net.Http.WinHttpHandler.dll 被复制到 bin 所以我没想到这是原因。我们需要运行时文件夹中的程序集,该 azure 函数似乎无法加载。将使用这些程序集的完整路径更新我的答案,避免手动复制。

以上是关于在 Azure Functions 上使用 AdWords API的主要内容,如果未能解决你的问题,请参考以下文章

在 LocalHost 上使用 Azure Functions 配置身份验证

在 Azure Functions 上使用 Box SDK 时出错

使用 Azure Functions Core Tools 在本地运行 Azure 函数时出现问题

Azure 函数 - 'azure-functions-host' 文件夹的位置

使用“apollo-server-azure-functions”的 Apollo 订阅

身份验证如何在 Azure Functions 上工作