44
Agosto 2016 First 90 API Rest Córdoba

Introducción a Open Platform - La API Rest de Mercado Libre

Embed Size (px)

Citation preview

Page 1: Introducción a Open Platform - La API Rest de Mercado Libre

Agosto 2016

First 90API Rest

Córdoba

Page 2: Introducción a Open Platform - La API Rest de Mercado Libre

This is our visionBuilding the foundation to Build a 3B Company by FY20

Eduardo Gaiteeduardo.gaite@mercadolibr

e.com

Page 3: Introducción a Open Platform - La API Rest de Mercado Libre

This is our visionBuilding the foundation to Build a 3B Company by FY20

AgendaParte 1

+ Contexto General

+ Rest Full API

+ Conceptos Básicos

+ Aplicación

+ Notificaciones

+ Testing de Aplicaciones & Tools

Page 4: Introducción a Open Platform - La API Rest de Mercado Libre

Contexto

Page 5: Introducción a Open Platform - La API Rest de Mercado Libre

This is our visionBuilding the foundation to Build a 3B Company by FY20

Estado de Situación

● Arquitectura Monolítica. Un solo ejecutable para el delivery

● Dependencia en el desarrollo. Un solo repositorio

● Infinidad de casos de test

● Pasajes a producción muy espaciados. Caóticos

● Una sola tecnología base

● Imposibilidad de acceso a los recursos desde el exterior

Page 6: Introducción a Open Platform - La API Rest de Mercado Libre

This is our visionBuilding the foundation to Build a 3B Company by FY20

Proceso de Migración

● Arquitectura Distribuida

● Independencia entre Departamentos - Responsabilidades

● API's MELI = Conjunto de Recursos

● Utilizada por los Front Ends del Site

● Independencia de Tecnologías

● Múltiples pasajes a producción en simultáneo

Page 7: Introducción a Open Platform - La API Rest de Mercado Libre

This is our visionBuilding the foundation to Build a 3B Company by FY20

AgendaParte 1

+ Contexto General

+ Rest Full API

+ Conceptos Básicos

+ Aplicación

+ Notificaciones

+ Testing de Aplicaciones & Tools

Page 8: Introducción a Open Platform - La API Rest de Mercado Libre

API

Page 9: Introducción a Open Platform - La API Rest de Mercado Libre

This is our visionBuilding the foundation to Build a 3B Company by FY20

Rest full

● Definición○ Organización de

funcionalidades.

● Dominio General○ https://api.mercadolibre.com

Page 10: Introducción a Open Platform - La API Rest de Mercado Libre

This is our visionBuilding the foundation to Build a 3B Company by FY20

Rest full

api.mercadolibre.com/users/items/orders

Page 11: Introducción a Open Platform - La API Rest de Mercado Libre

This is our visionBuilding the foundation to Build a 3B Company by FY20

Https

Page 12: Introducción a Open Platform - La API Rest de Mercado Libre

This is our visionBuilding the foundation to Build a 3B Company by FY20

Estándar del protocolo

https://api.mercadolibre.com/sites/MLA

Page 13: Introducción a Open Platform - La API Rest de Mercado Libre

This is our visionBuilding the foundation to Build a 3B Company by FY20

Http Status

Page 14: Introducción a Open Platform - La API Rest de Mercado Libre

This is our visionBuilding the foundation to Build a 3B Company by FY20

Json Response

GET a https://api.mercadolibre.com/sites/MLA

Page 15: Introducción a Open Platform - La API Rest de Mercado Libre

This is our visionBuilding the foundation to Build a 3B Company by FY20

Recursos = URL

/pictures/users/items/orders

/sites/MLA/search

/orders/bookmarks

Page 16: Introducción a Open Platform - La API Rest de Mercado Libre

This is our visionBuilding the foundation to Build a 3B Company by FY20

AgendaParte 1

+ Contexto General

+ Rest Full API

+ Conceptos Básicos

+ Aplicación

+ Notificaciones

+ Testing de Aplicaciones & Tools

Page 17: Introducción a Open Platform - La API Rest de Mercado Libre

Conceptos

Page 18: Introducción a Open Platform - La API Rest de Mercado Libre

This is our visionBuilding the foundation to Build a 3B Company by FY20

Recursos Públicos y Privados

GET a https://api.mercadolibre.com/users/6280737

7

Page 19: Introducción a Open Platform - La API Rest de Mercado Libre

This is our visionBuilding the foundation to Build a 3B Company by FY20

Recursos Públicos y Privados

GET a https://api.mercadolibre.com/users/62807377?access_token=....

Page 20: Introducción a Open Platform - La API Rest de Mercado Libre

This is our visionBuilding the foundation to Build a 3B Company by FY20

Selección

Page 21: Introducción a Open Platform - La API Rest de Mercado Libre

This is our visionBuilding the foundation to Build a 3B Company by FY20

Selección

Page 22: Introducción a Open Platform - La API Rest de Mercado Libre

This is our visionBuilding the foundation to Build a 3B Company by FY20

Selección

TítuloPrecioImágen

Page 23: Introducción a Open Platform - La API Rest de Mercado Libre

This is our visionBuilding the foundation to Build a 3B Company by FY20

Selección - Json Item Completo

https://api.mercadolibre.com/items/MLA629112495

2.8 K

Page 24: Introducción a Open Platform - La API Rest de Mercado Libre

This is our visionBuilding the foundation to Build a 3B Company by FY20

Selección - Json Item Atributos

https://api.mercadolibre.com/items/MLA629112495?attributes=id,title,price,pictures

839 B

Page 25: Introducción a Open Platform - La API Rest de Mercado Libre

This is our visionBuilding the foundation to Build a 3B Company by FY20

Multiget

Page 26: Introducción a Open Platform - La API Rest de Mercado Libre

This is our visionBuilding the foundation to Build a 3B Company by FY20

Multiget

/items/MLA629112495

/items/MLA623745283

/items/MLA616341170

/items/MLA623745173

X 4

Page 27: Introducción a Open Platform - La API Rest de Mercado Libre

This is our visionBuilding the foundation to Build a 3B Company by FY20

Multiget

/items?ids=MLA629112495,MLA623745283,MLA616341170, MLA623745173

X 1

Page 28: Introducción a Open Platform - La API Rest de Mercado Libre

This is our visionBuilding the foundation to Build a 3B Company by FY20

Multiget + Selección

/items?

ids=MLA629112495,MLA623745283,MLA616341170,MLA623745173&attributes=id,title,price,picture

5X más rápido10X más corto

Page 29: Introducción a Open Platform - La API Rest de Mercado Libre

This is our visionBuilding the foundation to Build a 3B Company by FY20

AgendaParte 1

+ Contexto General

+ Rest Full API

+ Conceptos Básicos

+ Aplicación

+ Notificaciones

+ Testing de Aplicaciones & Tools

Page 30: Introducción a Open Platform - La API Rest de Mercado Libre

Applications

Page 31: Introducción a Open Platform - La API Rest de Mercado Libre

This is our visionBuilding the foundation to Build a 3B Company by FY20

Cómo comenzar ….

applications.mercadolibre.com.ar

Page 32: Introducción a Open Platform - La API Rest de Mercado Libre

This is our visionBuilding the foundation to Build a 3B Company by FY20

Cómo comenzar ….

Page 33: Introducción a Open Platform - La API Rest de Mercado Libre

This is our visionBuilding the foundation to Build a 3B Company by FY20

Cómo comenzar ….

Page 34: Introducción a Open Platform - La API Rest de Mercado Libre

This is our visionBuilding the foundation to Build a 3B Company by FY20

Homologando mi App

http://apps.mercadolibre.com/

Page 35: Introducción a Open Platform - La API Rest de Mercado Libre

This is our visionBuilding the foundation to Build a 3B Company by FY20

Catálogo de Apps

Page 36: Introducción a Open Platform - La API Rest de Mercado Libre

This is our visionBuilding the foundation to Build a 3B Company by FY20

AgendaParte 1

+ Contexto General

+ Rest Full API

+ Conceptos Básicos

+ Aplicación

+ Notificaciones

+ Testing de Aplicaciones & Tools

Page 37: Introducción a Open Platform - La API Rest de Mercado Libre

Notificaciones

Page 38: Introducción a Open Platform - La API Rest de Mercado Libre

This is our visionBuilding the foundation to Build a 3B Company by FY20

Seteo de notificación

Page 39: Introducción a Open Platform - La API Rest de Mercado Libre

This is our visionBuilding the foundation to Build a 3B Company by FY20

AgendaParte 1

+ Contexto General

+ Rest Full API

+ Conceptos Básicos

+ Aplicación

+ Notificaciones

+ Testing de Aplicaciones & Tools

Page 40: Introducción a Open Platform - La API Rest de Mercado Libre

Testing & Tools

Page 41: Introducción a Open Platform - La API Rest de Mercado Libre

This is our visionBuilding the foundation to Build a 3B Company by FY20

Testing de Aplicación

http://developers.mercadolibre.com/es/realiza-pruebas/

Page 42: Introducción a Open Platform - La API Rest de Mercado Libre

This is our visionBuilding the foundation to Build a 3B Company by FY20

Tools

http://developers.mercadolibre.com/es/herramientas/

Page 43: Introducción a Open Platform - La API Rest de Mercado Libre

?

Page 44: Introducción a Open Platform - La API Rest de Mercado Libre

MuchasGracias