我正在我的网站上整合 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.php
和$consumerKey
,$consumerSecret
,$accessKey
,$list_id
,$account_id
和$accessSecret
。我在AWeber.com进行了帐户,但在那里我找不到这些凭据。
答案 0 :(得分:0)
当您注册开发者帐户并“创建和应用”时,https://labs.aweber.com网站会发布消费者密钥和密钥。然后,您可以使用带有这两个值的API库启动授权过程(遵循OAuth 1.0a标准)。该过程将为您提供访问密钥和密钥。
最后,您使用这两对密钥让您的应用每次请求数据时都会对API进行身份验证:
一旦您的应用程序自行验证,您就可以使用该库来获取您要访问的列表中的帐户ID和相应的列表ID。
AWeber有一个很好的教程,包括示例代码,可以引导您完成OAuth流程:
https://labs.aweber.com/getting_started/private#private_connect_oauth
答案 1 :(得分:-1)