1

我正在我的网站上集成AWeber,但我发现了问题,必须说文档不太清楚。

<?php
require_once('aweber_api/aweber_api.php');

$consumerKey    = '***'; # put your credentials here
$consumerSecret = '***'; # put your credentials here
$accessKey      = '***'; # put your credentials here
$accessSecret   = '***'; # put your credentials here
$account_id     = '***'; # put the Account ID here
$list_id        = '***'; # put the List ID here

$aweber = new AWeberAPI($consumerKey, $consumerSecret);

但我不知道,我从哪里得到aweber_api/aweber_api.phpand $consumerKey, $consumerSecret, $accessKey, $list_id, $account_idand $accessSecret。我在AWeber.com上注册了帐户,但没有找到这些凭据。

4

2 回答 2

0

当您注册开发者帐户并“创建和应用”时,使用者密钥和秘密由https://labs.aweber.com网站发布。然后,您可以使用具有这两个值的 API 库来启动授权过程(遵循 OAuth 1.0a 标准)。该过程将为您提供访问密钥和秘密。

最后,您使用这两对密钥让您的应用在每次请求数据时向 API 进行身份验证:

  • Consumer Key 和 Consumer Secret 标识你的应用
  • 访问密钥和访问秘密对 API 说,“我正在登录到这个特定的 AWeber 帐户”

一旦您的应用程序通过了身份验证,您就可以使用该库来获取您想要访问的任何列表的帐户 ID 和适当的列表 ID。

AWeber 有一个很好的教程,包括示例代码,可以在这里引导您完成他们的 OAuth 流程:

https://labs.aweber.com/getting_started/private#private_connect_oauth

于 2013-02-22T15:18:53.123 回答
-1

您需要在 Aweber 上创建一个开发者帐户才能获得这些。

转至:https ://labs.aweber.com/

然后创建一个应用程序来获取这些值。

于 2013-02-22T11:14:43.087 回答