使用 ColdFusion cfhttp 连接到远程 API

Connect to remote API using ColdFusion cfhttp

我正在尝试使用 ColdFusion 连接到 emma api。使用下面的代码。 Trying to get a listing of all members in an account 根据 api 文档执行以下操作。我在下面的调用中不断收到 404 的状态代码。关于我在这里遗漏的任何想法?

<cfset account_id= '123'/>
<cfset public_key = 'abc'/>
<cfset private_key = 'xyz' /> 
<cfset the_url = 'https://app.e2ma.net/#account_id#/members/' />

<cfhttp url="#the_url#" method="get" result="Results" timeout="999">
      <cfhttpparam type="header" name="Content-Type" value="application/x-www-form-urlencoded" />
      <cfhttpparam type="header" name="Accept" value="application/json"  />
      <cfhttpparam type="header" name="public_api_key" value="#public_key#" >
      <cfhttpparam type="header" name="private_api_key" value="#private_key#" >
</cfhttp>
<cfdump var="#Results#"/> 

以下是 cfdump 的结果:

您似乎使用了错误的端点。在他们的 documentation 中,他们说了以下内容:

The endpoint for all of our API calls is https://api.e2ma.net/

在您的代码中,您使用的是 app.e2ma.net,这应该是 api.e2ma.net

此外,您请求的 URL 的路径在其文档中不包含尾部斜杠(GET /#account_id/members 是他们所拥有的)。您可能还想更新它。