Php帖子到Twitter超时

时间:2016-02-09 14:10:09

标签: php curl twitter

我正在尝试使用php库发布到Twitter。

此代码:

$curl = curl_init();
curl_setopt_array($curl, $options);
$result = curl_exec($curl);
if (curl_errno($curl)) {
    throw new TwitterException('Server error: ' . curl_error($curl));
}

产生此错误: 致命错误:未捕获异常'TwitterException',消息'服务器错误:connect()超时!'在/home/a8905333/public_html/php/Twitter.php:267堆栈跟踪:#0 /home/a8905333/public_html/php/Twitter.php(104):Twitter-> request('status / update','POST ',Array,NULL)#1 /home/a8905333/public_html/edit_events.php(35):Twitter->发送('$ strEventTitle')#2 {main}抛出/ home / a8905333 / public_html / php / Twitter第267行.php

它在000webhost上,我已经检查过cUrl是否已启用,所以我认为它应该是好的。这是我的编码错误还是使用像000这样的免费主机的副产品?

0 个答案:

没有答案