I implemented the PHP Library into my website, filled out my form and received a notice that I must "Click here to authorize". Once I clicked the link it took me to a page to login, which I did, and then prompted me to either Grant Access or Deny. I copied the token from the URL before granting access, then granted access. I put the token, along with my username, key, secret, etc. into the config.php file. I retried the addContact example but I still received the "Click here to autorize" notice. Instead of changing Authentication.php's CTCTDataStore->addUser() to save the info to a database, I hardcoded the array (for testing purposes): function lookupUser($username){ $user = array(); $user['username'] = $username; $user['key'] ='***'; // The token, which I copied from the Grant Access line of URLs $user['secret'] = '*****'; // API ConsumerSecret return $user; } I am now receiving HTTP Status 401 - Invalid token. Where did I go wrong? Thanks, Brett
... View more