Reddit PHP SDK在所有内容上都返回NULL

时间:2017-01-20 16:53:13

标签: php sdk reddit

我正在使用Reddit PHP SDK尝试创建机器人。我为机器人创建了一个新的用户名。

我已在reddit上创建了一个应用,并将客户端ID和密钥添加到config.php

这些是我使用

的端点
static $ENDPOINT_STANDARD = 'http://www.reddit.com';
static $ENDPOINT_OAUTH = 'https://oauth.reddit.com';
static $ENDPOINT_OAUTH_AUTHORIZE = 'https://www.reddit.com/api/v1/authorize';
static $ENDPOINT_OAUTH_TOKEN = 'https://www.reddit.com/api/v1/access_token';
static $ENDPOINT_OAUTH_REDIRECT = 'http://localhost/reddit';

这是index.php

require_once("reddit.php");
$reddit = new reddit('username', 'password');
var_dump($reddit->getUser());

此返回NULL

$response = $reddit->getListing("technology", 5);
var_dump($response);

这也会返回NULL

我在这里做错了什么?

0 个答案:

没有答案