add_action('admin_menu', function () {
add_menu_page('Mercado Libre', 'Mercado Libre', 'manage_options', 'meli-connect', 'meli_connect_admin_page', 'dashicons-cart', 56);
add_submenu_page('meli-connect', 'Publicar Producto', 'Publicar a Meli', 'manage_options', 'meli-publicar', 'meli_publicar_producto');
});
// Página principal de conexión
function meli_connect_admin_page() {
$app_id = '2249185967827011';
$redirect_uri = urlencode('https://cyberdepot.com.mx/meli-auth/');
$auth_url = "https://auth.mercadolibre.com.mx/authorization?response_type=code&client_id=$app_id&redirect_uri=$redirect_uri";
echo '
Conexión a Mercado Libre
';
echo '
Para sincronizar tus productos, primero debes conectar tu cuenta:
';
echo '
Conectar con Mercado Libre';
echo '
';
}
// Intercambio de token
add_action('init', function () {
if (isset($_GET['code']) && strpos($_SERVER['REQUEST_URI'], 'meli-auth') !== false) {
$code = sanitize_text_field($_GET['code']);
$client_id = '2249185967827011';
$client_secret = 'zOzpVAS8rksCY6b0hqTevXCw0QDnrgxk';
$redirect_uri = 'https://cyberdepot.com.mx/meli-auth/';
$response = wp_remote_post('https://api.mercadolibre.com/oauth/token', [
'headers' => ['Content-Type' => 'application/x-www-form-urlencoded'],
'body' => http_build_query([
'grant_type' => 'authorization_code',
'client_id' => $client_id,
'client_secret' => $client_secret,
'code' => $code,
'redirect_uri' => $redirect_uri
])
]);
$body = json_decode(wp_remote_retrieve_body($response), true);
if (isset($body['access_token'])) {
update_option('meli_access_token', $body['access_token']);
update_option('meli_refresh_token', $body['refresh_token']);
update_option('meli_user_id', $body['user_id']);
wp_redirect(admin_url('admin.php?page=meli-connect&success=1'));
exit;
} else {
update_option('meli_token_error', $body);
wp_redirect(admin_url('admin.php?page=meli-connect&error=1'));
exit;
}
}
});
// Avisos visuales
add_action('admin_notices', function () {
if (isset($_GET['page']) && $_GET['page'] === 'meli-connect') {
if (!empty($_GET['success'])) {
echo '✅ Cuenta conectada correctamente a Mercado Libre.
';
}
if (!empty($_GET['error'])) {
$error = get_option('meli_token_error');
echo '❌ Error al obtener el token:
' . esc_html(print_r($error, true)) . '
';
}
}
});
// Publicador dinámico
function meli_publicar_producto() {
$access_token = get_option('meli_access_token');
echo 'Publicar Producto a Mercado Libre
';
echo '
';
if ($_SERVER['REQUEST_METHOD'] === 'POST' && !empty($_POST['sku'])) {
$sku = sanitize_text_field($_POST['sku']);
$product = wc_get_product(wc_get_product_id_by_sku($sku));
if (!$product) {
echo '
❌ Producto no encontrado.
';
return;
}
$title = $product->get_name();
$description = strip_tags($product->get_description());
$price = (float)$product->get_price();
$currency = 'MXN'; // Suponiendo pesos. Cambiar si usas USD como base.
// Si el precio es en USD y deseas convertir:
$usd_to_mxn = 17.0; // O usar un API de tipo de cambio.
if ($currency === 'USD') {
$price *= $usd_to_mxn;
}
$price *= 1.16; // IVA 16%
$price *= 1.20; // Margen 20%
$price = round($price, 2);
// Paso 1: obtener categoría recomendada
$cat_url = "https://api.mercadolibre.com/sites/MLM/domain_discovery/search?limit=1&q=" . urlencode($title);
$cat_response = wp_remote_get($cat_url);
$cat_data = json_decode(wp_remote_retrieve_body($cat_response), true);
$category_id = $cat_data[0]['category_id'] ?? null;
if (!$category_id) {
echo '
❌ No se pudo determinar la categoría.
';
return;
}
echo "
Categoría: $category_id
";
// Paso 2: obtener atributos requeridos
$req_url = "https://api.mercadolibre.com/categories/$category_id/attributes";
$req_response = wp_remote_get($req_url);
$attributes = json_decode(wp_remote_retrieve_body($req_response), true);
$required_attrs = array_filter($attributes, function($attr) {
return !empty($attr['tags']['required']);
});
// Paso 3: mostrar atributos requeridos
echo '
Atributos requeridos:
';
foreach ($required_attrs as $attr) {
echo '- ' . esc_html($attr['name']) . ' (' . esc_html($attr['id']) . ')
';
}
echo '
';
echo '
✅ Producto preparado con éxito para publicación.
';
echo '
';
print_r([
'title' => $title,
'price' => $price,
'description' => $description,
'sku' => $sku,
'category_id' => $category_id
]);
echo '
';
}
}
https://cyberdepot.com.mx/brand/4gamers/
2025-07-18T15:59:21+00:00
https://cyberdepot.com.mx/brand/acer/
2025-07-19T20:21:04+00:00
https://cyberdepot.com.mx/brand/acteck/
2025-07-19T20:21:39+00:00
https://cyberdepot.com.mx/brand/adata/
2025-07-19T20:20:39+00:00
https://cyberdepot.com.mx/brand/aerocool/
2025-07-18T15:57:36+00:00
https://cyberdepot.com.mx/brand/amazfit/
2025-07-18T15:59:21+00:00
https://cyberdepot.com.mx/brand/amazon/
2025-07-18T16:02:13+00:00
https://cyberdepot.com.mx/brand/amd/
2025-07-19T20:20:41+00:00
https://cyberdepot.com.mx/brand/anviz/
2025-07-18T16:02:58+00:00
https://cyberdepot.com.mx/brand/aoc/
2025-07-19T20:20:43+00:00
https://cyberdepot.com.mx/brand/apc/
2025-07-19T20:19:44+00:00
https://cyberdepot.com.mx/brand/apple/
2025-07-18T16:00:40+00:00
https://cyberdepot.com.mx/brand/aruba/
2025-07-18T16:01:26+00:00
https://cyberdepot.com.mx/brand/aspel/
2025-07-18T16:04:44+00:00
https://cyberdepot.com.mx/brand/asus/
2025-07-19T20:21:35+00:00
https://cyberdepot.com.mx/brand/asus-business/
2025-07-18T15:55:30+00:00
https://cyberdepot.com.mx/brand/badgy/
2025-07-19T20:19:59+00:00
https://cyberdepot.com.mx/brand/balam-rush/
2025-07-19T20:21:36+00:00
https://cyberdepot.com.mx/brand/barkan/
2025-07-18T16:04:25+00:00
https://cyberdepot.com.mx/brand/be-quiet/
2025-07-19T20:21:34+00:00
https://cyberdepot.com.mx/brand/belden/
2025-07-18T16:02:53+00:00
https://cyberdepot.com.mx/brand/benq/
2025-07-19T20:20:41+00:00
https://cyberdepot.com.mx/brand/bin-zun/
2025-07-18T16:02:18+00:00
https://cyberdepot.com.mx/brand/bitdefender/
2025-07-18T15:58:53+00:00
https://cyberdepot.com.mx/brand/bixolon/
2025-07-18T15:46:46+00:00
https://cyberdepot.com.mx/brand/blackberry/
2025-07-18T15:49:22+00:00
https://cyberdepot.com.mx/brand/bolide/
2025-07-18T16:03:31+00:00
https://cyberdepot.com.mx/brand/brobotix/
2025-07-19T20:21:23+00:00
https://cyberdepot.com.mx/brand/brother/
2025-07-19T20:21:28+00:00
https://cyberdepot.com.mx/brand/canon/
2025-07-19T20:21:27+00:00
https://cyberdepot.com.mx/brand/cdp/
2025-07-19T20:19:42+00:00
https://cyberdepot.com.mx/brand/cisco/
2025-07-18T16:04:38+00:00
https://cyberdepot.com.mx/brand/citizen/
2025-07-18T15:46:39+00:00
https://cyberdepot.com.mx/brand/clar-systems/
2025-07-18T16:04:50+00:00
https://cyberdepot.com.mx/brand/complet/
2025-07-18T15:57:10+00:00
https://cyberdepot.com.mx/brand/condumex/
2025-07-18T15:51:42+00:00
https://cyberdepot.com.mx/brand/condunet/
2025-07-18T15:53:46+00:00
https://cyberdepot.com.mx/brand/contpaqi/
2025-07-18T16:04:33+00:00
https://cyberdepot.com.mx/brand/contpaqi-contabilidad/
2025-07-18T16:04:33+00:00
https://cyberdepot.com.mx/brand/cooler-master/
2025-07-19T20:21:36+00:00
https://cyberdepot.com.mx/brand/corsair/
2025-07-19T20:21:35+00:00
https://cyberdepot.com.mx/brand/cougar/
2025-07-18T15:50:06+00:00
https://cyberdepot.com.mx/brand/creative-labs/
2025-07-19T20:21:16+00:00
https://cyberdepot.com.mx/brand/ct-cloud/
2025-07-18T15:54:48+00:00
https://cyberdepot.com.mx/brand/cyberpower/
2025-07-18T16:01:54+00:00
https://cyberdepot.com.mx/brand/dahua-technology/
2025-07-19T20:21:15+00:00
https://cyberdepot.com.mx/brand/datalogic/
2025-07-18T15:46:55+00:00
https://cyberdepot.com.mx/brand/datashield/
2025-07-19T20:19:43+00:00
https://cyberdepot.com.mx/brand/dbugg/
2025-07-19T20:20:31+00:00
https://cyberdepot.com.mx/brand/deepcool/
2025-07-18T15:58:20+00:00
https://cyberdepot.com.mx/brand/dell/
2025-07-19T20:21:18+00:00
https://cyberdepot.com.mx/brand/dess/
2025-07-18T15:59:16+00:00
https://cyberdepot.com.mx/brand/diem/
2025-07-18T16:05:01+00:00
https://cyberdepot.com.mx/brand/easy-line/
2025-07-19T20:20:55+00:00
https://cyberdepot.com.mx/brand/ec-line/
2025-07-19T20:19:52+00:00
https://cyberdepot.com.mx/brand/ecobond/
2025-07-18T16:05:02+00:00
https://cyberdepot.com.mx/brand/ecs/
2025-07-18T15:52:14+00:00
https://cyberdepot.com.mx/brand/elotouch/
2025-07-18T15:51:21+00:00
https://cyberdepot.com.mx/brand/enson/
2025-07-19T20:20:10+00:00
https://cyberdepot.com.mx/brand/epson/
2025-07-19T20:21:04+00:00
https://cyberdepot.com.mx/brand/eset/
2025-07-18T15:59:03+00:00
https://cyberdepot.com.mx/brand/estrella/
2025-07-18T16:04:57+00:00
https://cyberdepot.com.mx/brand/evolis/
2025-07-19T20:20:00+00:00
https://cyberdepot.com.mx/brand/evotec/
2025-07-19T20:21:37+00:00
https://cyberdepot.com.mx/brand/ezviz/
2025-07-18T16:04:16+00:00
https://cyberdepot.com.mx/brand/forza/
2025-07-18T15:57:06+00:00
https://cyberdepot.com.mx/brand/front/
2025-07-19T20:19:52+00:00
https://cyberdepot.com.mx/brand/fujitsu/
2025-07-18T15:46:14+00:00
https://cyberdepot.com.mx/brand/game-factor/
2025-07-18T16:04:49+00:00
https://cyberdepot.com.mx/brand/generico/
2025-07-19T20:20:02+00:00
https://cyberdepot.com.mx/brand/getttech/
2025-07-18T16:02:46+00:00
https://cyberdepot.com.mx/brand/getttech-gaming/
2025-07-18T15:57:26+00:00
https://cyberdepot.com.mx/brand/gigabyte/
2025-07-19T20:20:48+00:00
https://cyberdepot.com.mx/brand/go-safe/
2025-07-18T16:02:17+00:00
https://cyberdepot.com.mx/brand/google/
2025-07-18T15:57:10+00:00
https://cyberdepot.com.mx/brand/grandstream/
2025-07-19T20:21:24+00:00
https://cyberdepot.com.mx/brand/hewlett-packard-enterprise/
2025-07-18T16:04:40+00:00
https://cyberdepot.com.mx/brand/hi8us/
2025-07-18T16:02:18+00:00
https://cyberdepot.com.mx/brand/hid/
2025-07-18T15:54:48+00:00
https://cyberdepot.com.mx/brand/highlink/
2025-07-18T15:59:42+00:00
https://cyberdepot.com.mx/brand/hikvision/
2025-07-19T20:21:08+00:00
https://cyberdepot.com.mx/brand/hillstone/
2025-07-18T16:02:53+00:00
https://cyberdepot.com.mx/brand/hilook/
2025-07-18T16:03:47+00:00
https://cyberdepot.com.mx/brand/hisense/
2025-07-19T20:19:41+00:00
https://cyberdepot.com.mx/brand/hitachi/
2025-07-18T15:46:05+00:00
https://cyberdepot.com.mx/brand/honeywell/
2025-07-19T20:21:25+00:00
https://cyberdepot.com.mx/brand/hostech/
2025-07-18T15:48:10+00:00
https://cyberdepot.com.mx/brand/hp/
2025-07-19T20:21:28+00:00
https://cyberdepot.com.mx/brand/huawei/
2025-07-18T15:59:52+00:00
https://cyberdepot.com.mx/brand/hyundai/
2025-07-19T20:21:36+00:00
https://cyberdepot.com.mx/brand/immortal/
2025-07-18T15:49:24+00:00
https://cyberdepot.com.mx/brand/imou/
2025-07-18T16:04:00+00:00
https://cyberdepot.com.mx/brand/impress/
2025-07-18T16:05:01+00:00
https://cyberdepot.com.mx/brand/industrias-sola-basic/
2025-07-18T15:57:01+00:00
https://cyberdepot.com.mx/brand/infocus/
2025-07-18T15:49:04+00:00
https://cyberdepot.com.mx/brand/intel/
2025-07-19T20:20:41+00:00
https://cyberdepot.com.mx/brand/intellinet/
2025-07-18T16:02:51+00:00
https://cyberdepot.com.mx/brand/kaspersky/
2025-07-18T15:58:54+00:00
https://cyberdepot.com.mx/brand/kensington/
2025-07-18T16:04:26+00:00
https://cyberdepot.com.mx/brand/kinera/
2025-07-18T16:04:56+00:00
https://cyberdepot.com.mx/brand/kingston-technology/
2025-07-19T20:20:35+00:00
https://cyberdepot.com.mx/brand/koblenz/
2025-07-18T15:57:05+00:00
https://cyberdepot.com.mx/brand/ksa/
2025-07-18T16:02:18+00:00
https://cyberdepot.com.mx/brand/kxd/
2025-07-18T15:51:14+00:00
https://cyberdepot.com.mx/brand/kyocera/
2025-07-18T15:55:57+00:00
https://cyberdepot.com.mx/brand/laces/
2025-07-18T15:54:22+00:00
https://cyberdepot.com.mx/brand/lanix/
2025-07-19T20:20:42+00:00
https://cyberdepot.com.mx/brand/lenovo/
2025-07-19T20:20:59+00:00
https://cyberdepot.com.mx/brand/lexmark/
2025-07-18T15:50:50+00:00
https://cyberdepot.com.mx/brand/lf-acoustics/
2025-07-18T15:59:26+00:00
https://cyberdepot.com.mx/brand/lg/
2025-07-19T20:20:47+00:00
https://cyberdepot.com.mx/brand/linksys/
2025-07-19T20:21:13+00:00
https://cyberdepot.com.mx/brand/logitech/
2025-07-19T20:21:17+00:00
https://cyberdepot.com.mx/brand/manhattan/
2025-07-19T20:21:29+00:00
https://cyberdepot.com.mx/brand/mercusys/
2025-07-19T20:21:13+00:00
https://cyberdepot.com.mx/brand/microsoft/
2025-07-18T16:04:39+00:00
https://cyberdepot.com.mx/brand/mobifree/
2025-07-18T15:59:40+00:00
https://cyberdepot.com.mx/brand/msi/
2025-07-18T15:58:03+00:00
https://cyberdepot.com.mx/brand/multimedia-screens/
2025-07-18T16:02:18+00:00
https://cyberdepot.com.mx/brand/mybusiness/
2025-07-18T16:04:44+00:00
https://cyberdepot.com.mx/brand/naceb-gaming/
2025-07-19T20:21:31+00:00
https://cyberdepot.com.mx/brand/naceb-technology/
2025-07-19T20:21:34+00:00
https://cyberdepot.com.mx/brand/necnon/
2025-07-19T20:19:49+00:00
https://cyberdepot.com.mx/brand/netis/
2025-07-19T20:21:09+00:00
https://cyberdepot.com.mx/brand/new-pull/
2025-07-18T15:46:04+00:00
https://cyberdepot.com.mx/brand/nextep/
2025-07-19T20:20:15+00:00
https://cyberdepot.com.mx/brand/nexxt-solutions-home/
2025-07-18T16:04:46+00:00
https://cyberdepot.com.mx/brand/nintendo/
2025-07-18T15:59:21+00:00
https://cyberdepot.com.mx/brand/north-system/
2025-07-18T15:54:52+00:00
https://cyberdepot.com.mx/brand/norton/
2025-07-18T15:59:02+00:00
https://cyberdepot.com.mx/brand/okidata/
2025-07-18T16:02:53+00:00
https://cyberdepot.com.mx/brand/omada/
2025-07-19T20:19:40+00:00
https://cyberdepot.com.mx/brand/orvibo/
2025-07-18T16:04:45+00:00
https://cyberdepot.com.mx/brand/ovaltech/
2025-07-19T20:21:11+00:00
https://cyberdepot.com.mx/brand/pacific-soft/
2025-07-18T16:04:43+00:00
https://cyberdepot.com.mx/brand/panasonic/
2025-07-19T20:21:23+00:00
https://cyberdepot.com.mx/brand/panduit/
2025-07-18T16:02:52+00:00
https://cyberdepot.com.mx/brand/paperline/
2025-07-18T16:05:01+00:00
https://cyberdepot.com.mx/brand/pcm/
2025-07-18T16:05:00+00:00
https://cyberdepot.com.mx/brand/perfect-choice/
2025-07-19T20:21:29+00:00
https://cyberdepot.com.mx/brand/plantronics/
2025-07-18T16:00:08+00:00
https://cyberdepot.com.mx/brand/pny/
2025-07-18T15:49:56+00:00
https://cyberdepot.com.mx/brand/polaroid/
2025-07-18T16:05:00+00:00
https://cyberdepot.com.mx/brand/poly/
2025-07-18T16:04:45+00:00
https://cyberdepot.com.mx/brand/predator/
2025-07-19T20:20:37+00:00
https://cyberdepot.com.mx/brand/prolicom/
2025-07-18T15:55:21+00:00
https://cyberdepot.com.mx/brand/provision-isr/
2025-07-18T16:04:16+00:00
https://cyberdepot.com.mx/brand/qian/
2025-07-19T20:20:11+00:00
https://cyberdepot.com.mx/brand/redragon/
2025-07-18T15:58:33+00:00
https://cyberdepot.com.mx/brand/roku/
2025-07-18T15:57:10+00:00
https://cyberdepot.com.mx/brand/ruijie/
2025-07-18T15:54:47+00:00
https://cyberdepot.com.mx/brand/sabo/
2025-07-18T15:55:25+00:00
https://cyberdepot.com.mx/brand/samsung/
2025-07-19T20:21:37+00:00
https://cyberdepot.com.mx/brand/sandisk/
2025-07-18T15:53:12+00:00
https://cyberdepot.com.mx/brand/saxxon/
2025-07-18T16:04:06+00:00
https://cyberdepot.com.mx/brand/seagate/
2025-07-18T15:46:04+00:00
https://cyberdepot.com.mx/brand/silimex/
2025-07-18T16:02:18+00:00
https://cyberdepot.com.mx/brand/ske/
2025-07-18T15:57:01+00:00
https://cyberdepot.com.mx/brand/smartbitt/
2025-07-19T20:19:45+00:00
https://cyberdepot.com.mx/brand/soft-restaurant/
2025-07-18T16:04:44+00:00
https://cyberdepot.com.mx/brand/sony/
2025-07-18T15:59:21+00:00
https://cyberdepot.com.mx/brand/star-micronics/
2025-07-18T15:46:47+00:00
https://cyberdepot.com.mx/brand/startech-com/
2025-07-18T16:00:30+00:00
https://cyberdepot.com.mx/brand/steelseries/
2025-07-18T15:58:28+00:00
https://cyberdepot.com.mx/brand/stylos/
2025-07-19T20:21:20+00:00
https://cyberdepot.com.mx/brand/syble/
2025-07-18T15:50:13+00:00
https://cyberdepot.com.mx/brand/synology/
2025-07-19T20:20:04+00:00
https://cyberdepot.com.mx/brand/targus/
2025-07-18T16:02:12+00:00
https://cyberdepot.com.mx/brand/techzone/
2025-07-19T20:21:21+00:00
https://cyberdepot.com.mx/brand/tenda/
2025-07-19T20:21:10+00:00
https://cyberdepot.com.mx/brand/thermaltake/
2025-07-18T15:58:16+00:00
https://cyberdepot.com.mx/brand/topaz/
2025-07-18T16:03:03+00:00
https://cyberdepot.com.mx/brand/tp-link/
2025-07-19T20:21:14+00:00
https://cyberdepot.com.mx/brand/tripp-lite/
2025-07-18T16:02:53+00:00
https://cyberdepot.com.mx/brand/ubiquiti/
2025-07-19T20:19:40+00:00
https://cyberdepot.com.mx/brand/uniarch/
2025-07-18T16:03:58+00:00
https://cyberdepot.com.mx/brand/uniview/
2025-07-18T16:03:49+00:00
https://cyberdepot.com.mx/brand/urban-balance/
2025-07-18T16:01:54+00:00
https://cyberdepot.com.mx/brand/vankyo/
2025-07-18T16:02:22+00:00
https://cyberdepot.com.mx/brand/verbatim/
2025-07-18T16:04:49+00:00
https://cyberdepot.com.mx/brand/vica/
2025-07-19T20:19:43+00:00
https://cyberdepot.com.mx/brand/vorago/
2025-07-19T20:20:56+00:00
https://cyberdepot.com.mx/brand/vortred/
2025-07-18T16:00:09+00:00
https://cyberdepot.com.mx/brand/wam/
2025-07-18T16:04:03+00:00
https://cyberdepot.com.mx/brand/western-digital/
2025-07-19T20:20:04+00:00
https://cyberdepot.com.mx/brand/xerox/
2025-07-19T20:21:27+00:00
https://cyberdepot.com.mx/brand/xpg/
2025-07-19T20:21:34+00:00
https://cyberdepot.com.mx/brand/xzeal/
2025-07-19T20:21:34+00:00
https://cyberdepot.com.mx/brand/yaber/
2025-07-19T20:21:05+00:00
https://cyberdepot.com.mx/brand/yeyian/
2025-07-18T16:04:49+00:00
https://cyberdepot.com.mx/brand/yobekan/
2025-07-18T16:02:17+00:00
https://cyberdepot.com.mx/brand/zebra/
2025-07-19T20:20:14+00:00
https://cyberdepot.com.mx/brand/zk-teco/
2025-07-18T16:02:58+00:00