本文介绍了如何创建Aweber的应用程序?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我创建一个应用程序,并下载PHP codeS他们github上。香港专业教育学院读他们的文档,但它不是明确。我不知道如何启动或先做什么。我只是个初学者,我以前从未开发的应用。

我第一次尝试在网页上创建的PHP脚本希望能满足所需的功能提交表单,但什么都没有发生的时候。我与他们的支持,但他们建议将某个应用,使其正常工作。

Web表单提交的流程是这样的。在主页,用户将输入其姓名,电子邮件,电话和有两个无线电选项可供选择,当你选择一个,它会重定向到另一个页面,再填写一张表格并提交。我创建了一个Web表单主页,并在第二页上。当您提交第二页上的形式,它应该得到主页上的详细信息(姓名,电子邮件,电话和可供选择),我得到它的工作。但是,当我认为它在我的Aweber帐户的用户,在第二页中的字段是均为空。在主页上的字段是完整的,每当我完成第二页上填写了表格并提交时,Aweber说,网页已被封锁。

他们建议我将创造一个应用程序。但我不知道如何开始,因为他们的文档是mindboggling。

我真的AP preciate如果你能帮助我。

谢谢!


解决方案

这听起来像你需要创建该功能的应用程序aweber

我粘贴PHP code这使我非常迅速得到建立。它加载到你的浏览器,并按照指示。
一旦你准备好进行实际的API调用,你可以看到一些例子在labs.aweber.com/snippets/subscribers。

如果您遇到任何问题,可以随时在[email protected]电子邮件aweber API的支持。

一对夫妇的事情,你需要做的(如果你还没有的话):


  1. 创建一个帐户实验室()和aweber账户
    ()

  2. 创建一个应用程序来获得在实验室网站的使用者密钥和机密

  3. 从实验室站点下载AWeber PHP库,并确保你有它正确的路径在require_once()低于

// Step 1: assign these values from https://labs.aweber.com/apps
$consumerKey = '';
$consumerSecret = '';

// Step 2: load this PHP file in a web browser, and follow the instructions to set
// the following variables:
$accessKey = '';
$accessSecret = '';
$list_id = '';

if (!$consumerKey || !$consumerSecret){
    print "You need to assign \$consumerKey and \$consumerSecret at the top of this script and reload.<br><br>" .
        "These are listed on <a href='https://labs.aweber.com/apps' target=_blank>https://labs.aweber.com/apps</a><br>\n";
    exit;
}

$aweber = new AWeberAPI($consumerKey, $consumerSecret);
if (!$accessKey || !$accessSecret){
    display_access_tokens($aweber);
}

try { 
    $account = $aweber->getAccount($accessKey, $accessSecret);
    $account_id = $account->id;

    if (!$list_id){
        display_available_lists($account);
        exit;
    }

    print "You script is configured properly! " . 
        "You can now start to develop your API calls, see the example in this script.<br><br>" .
        "Be sure to set \$test_email if you are going to use the example<p>";

    //example: create a subscriber
    /*
    $test_email = '';
    if (!$test_email){
    print "Assign a valid email address to \$test_email and retry";
    exit;
    }
    $listURL = "/accounts/{$account_id}/lists/{$list_id}"; 
    $list = $account->loadFromUrl($listURL);
    $params = array( 
        'email' => $test_email,
        'ip_address' => '127.0.0.1',
        'ad_tracking' => 'client_lib_example', 
        'misc_notes' => 'my cool app', 
        'name' => 'John Doe' 
    ); 
    $subscribers = $list->subscribers; 
    $new_subscriber = $subscribers->create($params);
    print "{$test_email} was added to the {$list->name} list!";
    */

} catch(AWeberAPIException $exc) { 
    print "<h3>AWeberAPIException:</h3>"; 
    print " <li> Type: $exc->type <br>"; 
    print " <li> Msg : $exc->message <br>"; 
    print " <li> Docs: $exc->documentation_url <br>"; 
    print "<hr>"; 
    exit(1); 
}

function get_self(){
    return 'http://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
}

function display_available_lists($account){
    print "Please add one for the lines of PHP Code below to the top of your script for the proper list<br>" .
            "then click <a href='" . get_self() . "'>here</a> to continue<p>";

    $listURL ="/accounts/{$account->id}/lists/"; 
    $lists = $account->loadFromUrl($listURL);
    foreach($lists->data['entries'] as $list ){
        print "<pre>\$list_id = '{$list['id']}'; // list name:{$list['name']}\n</pre>";
    }
}

function display_access_tokens($aweber){
    if (isset($_GET['oauth_token']) && isset($_GET['oauth_verifier'])){

        $aweber->user->requestToken = $_GET['oauth_token'];
        $aweber->user->verifier = $_GET['oauth_verifier'];
        $aweber->user->tokenSecret = $_COOKIE['secret'];

        list($accessTokenKey, $accessTokenSecret) = $aweber->getAccessToken();

        print "Please add these lines of code to the top of your script:<br>" .
                "<pre>" .
                "\$accessKey = '{$accessTokenKey}';\n" . 
                "\$accessSecret = '{$accessTokenSecret}';\n" .
                "</pre>" . "<br><br>" .
                "Then click <a href='" . get_self() . "'>here</a> to continue";
        exit;
    }

    if(!isset($_SERVER['HTTP_USER_AGENT'])){
        print "This request must be made from a web browser\n";
        exit;
    }

    $callbackURL = get_self();
    list($key, $secret) = $aweber->getRequestToken($callbackURL);
    $authorizationURL = $aweber->getAuthorizeUrl();

    setcookie('secret', $secret);

    header("Location: $authorizationURL");
    exit();
}
?>

这篇关于如何创建Aweber的应用程序?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-20 21:42