请求的资源不存在

时间:2019-05-06 13:47:32

标签: php api instagramapi-mgp25

我使用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();
}
?>

0 个答案:

没有答案