我使用Instagram-API来发布带有标题的图像。我尝试:
$ig->timeline->uploadPhoto($photo->getFile(), ["caption" => "Hello world!"]);
请求已完成,图像已成功上传,但标题为空。
当我运行示例uploadPhoto.php时,图像也会不带标题加载。
我该如何解决?
答案 0 :(得分:0)
$photoFilename = Enter Path here;
$photo = new \InstagramAPI\Media\Photo\InstagramPhoto($photoFilename);
$captionText = 'Hello world!';
$ig->timeline->uploadPhoto($photo->getFile(), ['caption' => $captionText]);
运行此代码即可正常工作。
如果出现任何问题,请将您的代码发送给我,我会更正。