我使用instagram api(mgp25)。 我想跟随其他人,但是我有一些问题。 错误:请求的资源不存在。 Br。
<?php
require 'vendor/autoload.php';
\InstagramAPI\Instagram::$allowDangerousWebUsageAtMyOwnRisk = true;
$username = 'username';
$password = 'password';
$debug = false;
$truncatedDebug =false;
$ig = new \InstagramAPI\Instagram($debug, $truncatedDebug);
try {
$ig->login($username, $password);
} catch (Exception $e) {
echo $e->getmessage();
try {
echo $ig->people->follow('user_id');
} catch (Exception $e) {
echo $e->getmessage();
}
?>