PHP Instagram-API: Caption text does not exist

713 Views Asked by At

I use Instagram-API for the posting images with captions. I try:

$ig->timeline->uploadPhoto($photo->getFile(), ["caption" => "Hello world!"]);

The request is completed, the image is successfully uploaded, but the caption is empty.

When I run the example uploadPhoto.php, the image is also loaded without a title.

How can I fix that?

1

There are 1 best solutions below

0
On
$photoFilename = Enter Path here;

$photo = new \InstagramAPI\Media\Photo\InstagramPhoto($photoFilename);

$captionText = 'Hello world!';

$ig->timeline->uploadPhoto($photo->getFile(), ['caption' => $captionText]);

Run this Code it works Properly.

If Any Issue came then send me your code, I will correct it.