我目前正在嘗試創建一個插件使用Pinterest的Wordpress。我遇到了一個小問題,我一直試圖通過鏈接返回圖片,但只能返回鏈接。Pinterest的WordPress插件顯示圖像
<?php
function displayPinterest()
{
$request = wp_remote_get('https://api.pinterest.com/v1/boards/mercurizen/shoeswatches/pins/?access_token=AXgIMQmjCFDXyJsHni0wYUdZxshcFETISS1nfSRDAz1G7WBDJgAAAAA&fields=image,note,link&limit=5');
$pins = json_decode($request['body'], true);
if(!empty($pins['data'])) {
echo '<ul>';
foreach($pins['data'] as $pin) {
echo '<li><a href="' . $pin['url'] . '">' . $pin['note']. '</a></li>';
}
echo '</ul>';
}
}
?>
任何經驗豐富的Wordpress插件和Pinterest可以幫助我解決這個問題嗎?
https://api.pinterest.com/v1/boards/mercurizen/shoeswatches/pins/?access_token=AXgIMQmjCFDXyJsHni0wYUdZxshcFETISS1nfSRDAz1G7WBDJgAAAAA&limit=5 API本身並不響應給圖像。 – Milap
@Milap,對不起,我更新了API鏈接 – ryuuman123
請更新您的問題中的鏈接,它仍舊是舊的。 – Milap