我决定将我的网站与我的 Twitter 帐户结合起来。为了正确使用它,我想发布一条推文。我决定从这里开始使用非常简单的类 TwitterAPIExchange:https ://github.com/J7mbo/twitter-api-php
我在我的 Linux 服务器上对其进行了测试,一切正常。但我想在我的 Windows 服务器上使用这个工具。这是我的设置:Windows 2012、IIS 8、PHP。
这是我的测试代码
// Setup
$settings = array( ... );
$url = 'https://api.twitter.com/1.1/statuses/update.json';
// Post the data
$requestMethod = 'POST';
$postfields = array('status' => 'Hello World');
$twitter = new TwitterAPIExchange($settings);
$json = $twitter->buildOauth($url, $requestMethod)->setPostfields($postfields)->performRequest();
var_dump($json);
在 Windows 机器上,它返回
bool(false)
每时每刻!这意味着什么?curl和IIS有问题吗?我在网上阅读了几篇关于它的文章,但到目前为止都没有帮助我。非常感谢任何输入!