-
Notifications
You must be signed in to change notification settings - Fork 0
/
publicaciones.php
41 lines (36 loc) · 1.06 KB
/
publicaciones.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?php
/**
* MercadoLibre hackaton home page login user
* @author mezalejandro
* @copyright 2013
*/
require_once 'includes/header.inc.php';
error_reporting(1);
if (!$userId)
{
header("Location:index.php");
die();
}
#Obtener ID de la imagen
$accessToken = $meli->getAccessToken();
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://api.mercadolibre.com/users/".$user['json']['id']."/items/search?access_token=".$accessToken['value']);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POSTFIELDS);
$json=curl_exec($ch);
curl_close($ch);
$imagen=json_decode($json, true);
//$imagen["id"];
echo '<pre>';
print_r($imagen);
echo '</pre>';
echo '<hr/><br/>';
#Linkear la imagen al item
$response=$meli->postWithAccessToken('/items/'.$imagen['results'],array());
foreach ($imagen as &$categoryItem):
//echo '<li><a href="sub_category.php?id=' . $categoryItem['id'] . '">'. html_entity_decode($categoryItem['name']).'</a></li>';
echo '<pre>';
print_r($categoryItem);
echo '</pre>';
endforeach;
?>