seregazhuk / php-pinterest-bot

This PHP library will help you to work with your Pinterest account without using any API account credentials.
MIT License
413 stars 129 forks source link

Full URL in Boards Pins #375

Closed delemore closed 6 years ago

delemore commented 6 years ago

Is it possible to get the full URL to every pin? Currently the API returns only the top level Domain to each pin.

seregazhuk commented 6 years ago

Hi, @delemore What do you mean by "full URL"?

delemore commented 6 years ago

@seregazhuk , I mean a URL like this: https://edition.cnn.com/style/article/alcohol-cigarette-vintage-ads/index.html

Currently Board Pins Returns only: https://edition.cnn.com/

So my question is, if it's possible for you to Change your Code in that way it delivers the complete URL?

seregazhuk commented 6 years ago

Try this:

$info = $bot->pins->info('366339750933822415'); // id of pin you are looking for
echo $info['link'];
delemore commented 6 years ago

Great, that works. Thank you!