0

即使是下面最基本的代码也不会返回任何内容,运行来自 GitHub 的最新版本的 tmhOAuth 和 tmhUtilities,运行它(使用从 Twitter 开发站点中的我的应用程序复制的有效密钥和秘密 - 出于安全目的,它们在此处被隐藏)。

该页面根本没有输出任何东西,什么都没有……这么困惑?此脚本是否与 CSF/cPanel 有任何防火墙问题?我已经尝试以 root 身份从服务器 ping api.twitter.com 并且效果很好。

真的为想法而苦苦挣扎吗?因为它之前有效,所以下一分钟什么都没有发生。

$code 的 var_dump 返回 NULL :/

<?php
require 'tmhOAuth.php';
require 'tmhUtilities.php';
$tmhOAuth = new tmhOAuth(array(
  'consumer_key'    => '********',
  'consumer_secret' => '****************',
  'user_token'      => '********',
  'user_secret'     => '****************'
));

$code = $tmhOAuth->request('GET', $tmhOAuth->url('1/account/verify_credentials'));

if ($code == 200) {
  echo 'The access level of this token is: ' . $tmhOAuth->response['headers']['x_access_level'] . PHP_EOL;
  tmhUtilities::pr($tmhOAuth->response);
} else {
    tmhUtilities::pr(htmlentities($tmhOAuth->response['response']));
}

$tmhOAuth 的 var_dump 返回(密钥隐藏但有效):

object(tmhOAuth)#1 (3) { ["params"]=> array(0) { } ["auto_fixed_time"]=> bool(false) ["config"]=> array(19) { ["consumer_key"]=> string(22) "**********" ["consumer_secret"]=> string(42) "*********" ["user_token"]=> string(50) "********" ["user_secret"]=> string(43) "************" ["use_ssl"]=> bool(true) ["host"]=> string(15) "api.twitter.com" ["debug"]=> bool(true) ["force_nonce"]=> bool(false) ["nonce"]=> bool(false) ["force_timestamp"]=> bool(false) ["timestamp"]=> bool(false) ["oauth_version"]=> string(3) "1.0" ["curl_connecttimeout"]=> int(30) ["curl_timeout"]=> int(10) ["curl_ssl_verifypeer"]=> bool(false) ["curl_followlocation"]=> bool(false) ["is_streaming"]=> bool(false) ["streaming_eol"]=> string(2) " " ["streaming_metrics_interval"]=> int(60) } }
4

1 回答 1

0

再次从 GitHub 更新了 tmhOAuth 库,并确保 cacert.pem 位于 tmhOAuth 的同一目录中,最终修复了它:)

于 2013-04-28T12:49:06.163 回答