我的控制器中有以下代码,基本上是试图使用我通过composer 安装的这个库
use SymfonyComponentHttpFoundationResponse;
require __DIR__.'/../../vendor/autoload.php';
class MainController
{
public function number()
{
$username = 'someusername';
$password = 'somepassword';
$debug = true;
$truncatedDebug = false;
$ig = new InstagramAPIInstagram($debug, $truncatedDebug);
$number = random_int(0, 100);
return new Response(
'<html><body>Lucky number: '.$number.'</body></html>'
);
}
}
但是它给了我以下
Attempted to load class "Instagram" from namespace "InstagramAPI".
Did you forget a "use" statement for another namespace?
我已经尝试添加使用命名空间Instagram,但它不起作用
根据https://github.com/mgp25/Instagram-API/blob/master/README.md名称空间被称为CCD_ 1。
尝试new InstagramAPIInstagram($debug, $truncatedDebug);
。